diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..767bddc --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "eslint.useFlatConfig": true, + "eslint.validate": ["typescript"], + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode" +} \ No newline at end of file diff --git a/assets/configs/generated/core/Beans.ts b/assets/configs/generated/core/Beans.ts index b1548b8..e1894af 100644 --- a/assets/configs/generated/core/Beans.ts +++ b/assets/configs/generated/core/Beans.ts @@ -1,9 +1,17 @@ -/** - * 自动生成的Bean类型定义 - * 请勿手动修改此文件 - * 生成时间: 2025-10-13T13:51:42.231Z - */ - import { ConfigParseUtils } from "./ConfigParseUtils"; -// 没有找到Bean定义 \ No newline at end of file +/** Bean: Beans */ +export interface Beans { + ClassName: string; + FieldName: string; + FieldType: string; + Comment: string; +} +export function parseBeans(data: any): Beans { + return { + ClassName: ConfigParseUtils.parseString(data.ClassName), + FieldName: ConfigParseUtils.parseString(data.FieldName), + FieldType: ConfigParseUtils.parseString(data.FieldType), + Comment: ConfigParseUtils.parseString(data.Comment), + }; +} diff --git a/assets/configs/generated/core/ConfigParseUtils.ts b/assets/configs/generated/core/ConfigParseUtils.ts index 6894778..af86c56 100644 --- a/assets/configs/generated/core/ConfigParseUtils.ts +++ b/assets/configs/generated/core/ConfigParseUtils.ts @@ -1,12 +1,11 @@ +import { Vec2, Vec3, Vec4, Color, Size, Rect, Quat, Mat4 } from "cc"; -import { Vec2, Vec3, Vec4, Color, Size, Rect, Quat, Mat4 } from 'cc'; - -import LogUtils from '@max-studio/core/utils/LogUtils'; +import LogUtils from "@max-studio/core/utils/LogUtils"; /** * 配置表解析工具类 * 提供通用的数据类型解析函数 - * + * * ⚠️ 此文件由配置表生成器自动生成,请勿手动修改! * 如需修改,请编辑 configs/plugins/ConfigTableGenerator.ts 中的 generateConfigParseUtils 方法 */ @@ -15,8 +14,8 @@ export class ConfigParseUtils { * 解析Vec2类型 */ public static parseVec2(value: any): Vec2 { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Vec2(parts[0] || 0, parts[1] || 0); } return new Vec2(0, 0); @@ -26,8 +25,8 @@ export class ConfigParseUtils { * 解析Vec3类型 */ public static parseVec3(value: any): Vec3 { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Vec3(parts[0] || 0, parts[1] || 0, parts[2] || 0); } return new Vec3(0, 0, 0); @@ -37,8 +36,8 @@ export class ConfigParseUtils { * 解析Vec4类型 */ public static parseVec4(value: any): Vec4 { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Vec4(parts[0] || 0, parts[1] || 0, parts[2] || 0, parts[3] || 0); } return new Vec4(0, 0, 0, 0); @@ -48,8 +47,8 @@ export class ConfigParseUtils { * 解析Color类型 */ public static parseColor(value: any): Color { - if (typeof value === 'string') { - if (value.startsWith('#')) { + if (typeof value === "string") { + if (value.startsWith("#")) { // 十六进制颜色 const hex = value.slice(1); const r = Number.parseInt(hex.substring(0, 2), 16); @@ -59,7 +58,7 @@ export class ConfigParseUtils { return new Color(r, g, b, a); } else { // 逗号分隔的RGBA值 - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Color(parts[0] || 0, parts[1] || 0, parts[2] || 0, parts[3] !== undefined ? parts[3] : 255); } } @@ -70,8 +69,8 @@ export class ConfigParseUtils { * 解析Size类型 */ public static parseSize(value: any): Size { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Size(parts[0] || 0, parts[1] || 0); } return new Size(0, 0); @@ -81,8 +80,8 @@ export class ConfigParseUtils { * 解析Rect类型 */ public static parseRect(value: any): Rect { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Rect(parts[0] || 0, parts[1] || 0, parts[2] || 0, parts[3] || 0); } return new Rect(0, 0, 0, 0); @@ -92,8 +91,8 @@ export class ConfigParseUtils { * 解析Quat类型 */ public static parseQuat(value: any): Quat { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); return new Quat(parts[0] || 0, parts[1] || 0, parts[2] || 0, parts[3] !== undefined ? parts[3] : 1); } return new Quat(0, 0, 0, 1); @@ -103,18 +102,30 @@ export class ConfigParseUtils { * 解析Mat4类型 */ public static parseMat4(value: any): Mat4 { - if (typeof value === 'string') { - const parts = value.split(',').map(v => Number.parseFloat(v.trim()) || 0); + if (typeof value === "string") { + const parts = value.split(",").map((v) => Number.parseFloat(v.trim()) || 0); const mat = new Mat4(); try { mat.set( - parts[0], parts[1], parts[2], parts[3], - parts[4], parts[5], parts[6], parts[7], - parts[8], parts[9], parts[10], parts[11], - parts[12], parts[13], parts[14], parts[15] + parts[0], + parts[1], + parts[2], + parts[3], + parts[4], + parts[5], + parts[6], + parts[7], + parts[8], + parts[9], + parts[10], + parts[11], + parts[12], + parts[13], + parts[14], + parts[15], ); } catch (err) { - LogUtils.error('ConfigParseUtils', '解析Mat4失败:', err); + LogUtils.error("ConfigParseUtils", "解析Mat4失败:", err); } return mat; } @@ -125,14 +136,14 @@ export class ConfigParseUtils { * 解析布尔值 */ static parseBoolean(value: any): boolean { - if (typeof value === 'boolean') { + if (typeof value === "boolean") { return value; } - if (typeof value === 'string') { + if (typeof value === "string") { const lowerValue = value.toLowerCase(); - return lowerValue === 'true' || lowerValue === '1' || lowerValue === 'yes'; + return lowerValue === "true" || lowerValue === "1" || lowerValue === "yes"; } - if (typeof value === 'number') { + if (typeof value === "number") { return value !== 0; } return false; @@ -142,8 +153,8 @@ export class ConfigParseUtils { * 解析整数 */ public static parseInt(value: string | number): number { - if (typeof value === 'number') return Math.floor(value); - if (typeof value === 'string') return Number.parseInt(value.trim()) || 0; + if (typeof value === "number") return Math.floor(value); + if (typeof value === "string") return Number.parseInt(value.trim()) || 0; return 0; } @@ -158,7 +169,7 @@ export class ConfigParseUtils { * 解析字符串 */ static parseString(value: any): string { - return String(value || ''); + return String(value || ""); } /** @@ -166,10 +177,13 @@ export class ConfigParseUtils { */ static parseStringArray(value: any): string[] { if (Array.isArray(value)) { - return value.map(item => String(item || '')); + return value.map((item) => String(item || "")); } - if (typeof value === 'string') { - return value.split(',').map(item => item.trim()).filter(item => item.length > 0); + if (typeof value === "string") { + return value + .split(",") + .map((item) => item.trim()) + .filter((item) => item.length > 0); } return []; } @@ -179,10 +193,10 @@ export class ConfigParseUtils { */ static parseNumberArray(value: any): number[] { if (Array.isArray(value)) { - return value.map(item => Number.parseFloat(item) || 0); + return value.map((item) => Number.parseFloat(item) || 0); } - if (typeof value === 'string') { - return value.split(',').map(item => Number.parseFloat(item.trim()) || 0); + if (typeof value === "string") { + return value.split(",").map((item) => Number.parseFloat(item.trim()) || 0); } return []; } @@ -191,7 +205,7 @@ export class ConfigParseUtils { * 深度冻结对象,确保所有嵌套属性都不可修改 */ public static deepFreeze(obj: T): T { - if (obj === null || typeof obj !== 'object') { + if (obj === null || typeof obj !== "object") { return obj; } @@ -207,23 +221,23 @@ export class ConfigParseUtils { try { // 递归冻结所有属性(先冻结子对象) - Object.getOwnPropertyNames(obj).forEach(prop => { + Object.getOwnPropertyNames(obj).forEach((prop) => { const value = (obj as any)[prop]; - if (value !== null && typeof value === 'object') { + if (value !== null && typeof value === "object") { this.deepFreeze(value); } }); - + // 最后冻结对象本身 Object.freeze(obj); - + // 对于数组,还需要防止索引赋值 if (Array.isArray(obj)) { Object.seal(obj); } } catch (err) { // 如果冻结失败,记录警告但不中断程序 - LogUtils.warn('ConfigParseUtils', '无法冻结对象:', obj, err); + LogUtils.warn("ConfigParseUtils", "无法冻结对象:", obj, err); } return obj; @@ -232,26 +246,43 @@ export class ConfigParseUtils { /** * 创建配置数据的只读代理,提供更好的错误提示 */ - public static createReadonlyProxy(obj: T, configName: string = '配置数据'): T { + public static createReadonlyProxy(obj: T, configName: string = "配置数据"): T { return new Proxy(obj, { set(target, property, value) { const errorMsg = `❌ 禁止修改${configName}的属性 "${String(property)}"!配置数据在运行时应保持不可变。`; - LogUtils.error('ConfigParseUtils', errorMsg); + LogUtils.error("ConfigParseUtils", errorMsg); throw new Error(errorMsg); }, defineProperty(target, property, descriptor) { const errorMsg = `❌ 禁止定义${configName}的属性 "${String(property)}"!配置数据在运行时应保持不可变。`; - LogUtils.error('ConfigParseUtils', errorMsg); + LogUtils.error("ConfigParseUtils", errorMsg); throw new Error(errorMsg); }, deleteProperty(target, property) { const errorMsg = `❌ 禁止删除${configName}的属性 "${String(property)}"!配置数据在运行时应保持不可变。`; - LogUtils.error('ConfigParseUtils', errorMsg); + LogUtils.error("ConfigParseUtils", errorMsg); throw new Error(errorMsg); - } + }, }); } } // 导出便捷的解析函数 -export const { parseVec2, parseVec3, parseVec4, parseColor, parseSize, parseRect, parseQuat, parseMat4, parseBoolean, parseInt, parseFloat, parseString, parseStringArray, parseNumberArray, deepFreeze, createReadonlyProxy } = ConfigParseUtils; \ No newline at end of file +export const { + parseVec2, + parseVec3, + parseVec4, + parseColor, + parseSize, + parseRect, + parseQuat, + parseMat4, + parseBoolean, + parseInt, + parseFloat, + parseString, + parseStringArray, + parseNumberArray, + deepFreeze, + createReadonlyProxy, +} = ConfigParseUtils; diff --git a/assets/configs/generated/core/Enums.ts b/assets/configs/generated/core/Enums.ts index 43febf7..e73166f 100644 --- a/assets/configs/generated/core/Enums.ts +++ b/assets/configs/generated/core/Enums.ts @@ -1,16 +1,7 @@ -/** - * 自动生成的枚举类型定义 - * 请勿手动修改此文件 - * 生成时间: 2025-10-13T13:51:42.230Z - */ - +/** 自动生成的枚举定义 */ export enum DressSourceType { - /** 无 */ - NONE = 0, - /** 插槽 */ - SLOT = 1, - /** 挂点静态图 */ - SOCKET_TEX = 2, - /** 挂点动画 */ - SOCKET_SPINE = 3 + NONE = 0, // 无 + SLOT = 1, // 插槽 + SOCKET_TEX = 2, // 挂点静态图 + SOCKET_SPINE = 3, // 挂点动画 } diff --git a/assets/configs/generated/core/PetConfigData.ts b/assets/configs/generated/core/PetConfigData.ts index 5726e01..5d511fa 100644 --- a/assets/configs/generated/core/PetConfigData.ts +++ b/assets/configs/generated/core/PetConfigData.ts @@ -1,19 +1,5 @@ - - - -import { Color } from 'cc'; - - - -import { ConfigParseUtils } from './ConfigParseUtils'; - - - - - - - - +import { Color } from "cc"; +import { ConfigParseUtils } from "./ConfigParseUtils"; /** * PetConfig数据结构 @@ -21,133 +7,64 @@ import { ConfigParseUtils } from './ConfigParseUtils'; export class PetConfigData { private _id: number; + public get id(): number { + return this._id; + } private _key: string; + public get key(): string { + return this._key; + } private _bundle: string; + public get bundle(): string { + return this._bundle; + } private _path: string; + public get path(): string { + return this._path; + } private _name: string; + public get name(): string { + return this._name; + } private _color: Color; + public get color(): Color { + return this._color; + } private _desc: string; - - - - - /** id */ - - public get id(): number { - - return this._id; - - } - - - - /** key */ - - public get key(): string { - - return this._key; - - } - - - - /** bundle */ - - public get bundle(): string { - - return this._bundle; - - } - - - - /** 资源路径 */ - - public get path(): string { - - return this._path; - - } - - - - /** 宠物名称 */ - - public get name(): string { - - return this._name; - - } - - - - /** 颜色 */ - - public get color(): Color { - - return ConfigParseUtils.createReadonlyProxy(ConfigParseUtils.deepFreeze(this._color), '颜色'); - - } - - - - /** 描述 */ - public get desc(): string { - return this._desc; - } - public constructor( - id: number, - key: string, - bundle: string, - path: string, - name: string, - color: Color, - desc: string - ) { - this._id = id; - this._key = key; - this._bundle = bundle; - this._path = path; - this._name = name; - this._color = color; - this._desc = desc; - } } - /** * 解析配置数据 */ export function parsePetConfigData(data: any): PetConfigData { return new PetConfigData( - ConfigParseUtils.parseInt(data.id), ConfigParseUtils.parseString(data.key), @@ -161,6 +78,5 @@ export function parsePetConfigData(data: any): PetConfigData { ConfigParseUtils.parseColor(data.color), ConfigParseUtils.parseString(data.desc) - ); -} \ No newline at end of file +} diff --git a/assets/configs/generated/core/PetConfigManager.ts b/assets/configs/generated/core/PetConfigManager.ts index a9fa3f8..0300a65 100644 --- a/assets/configs/generated/core/PetConfigManager.ts +++ b/assets/configs/generated/core/PetConfigManager.ts @@ -1,11 +1,11 @@ import { JsonAsset } from "cc"; -import { ResManager } from "@max-studio/core/res/ResManager"; import { singleton, Singleton } from "@max-studio/core/Singleton"; import LogUtils from "@max-studio/core/utils/LogUtils"; import { ConfigParseUtils } from "./ConfigParseUtils"; import { PetConfigData, parsePetConfigData } from "./PetConfigData"; +import ResManager from "@max-studio/core/res/ResManager"; /** * PetConfig配置管理器 @@ -13,10 +13,11 @@ import { PetConfigData, parsePetConfigData } from "./PetConfigData"; * ⚠️ 此文件由配置表生成器自动生成,请勿手动修改! * 如需修改,请编辑对应的Excel配置文件,然后重新生成 */ -@singleton() +@singleton({ auto: true }) export class PetConfigManager extends Singleton { private configList: readonly PetConfigData[] = []; private configMap = new Map(); + private isLoaded = false; protected async onInit(): Promise { @@ -25,19 +26,15 @@ export class PetConfigManager extends Singleton { private async loadConfig(): Promise { try { - const asset = await ResManager.getInstance().loadAsset( - "generated/data/PetConfig", - JsonAsset, - "configs", - ); + const { err, asset } = await ResManager.getInstance().loadAsset({ + path: "generated/data/PetConfig", + type: JsonAsset, + bundle: "configs", + }); this.parseConfig(asset.json); this.isLoaded = true; } catch (err) { - LogUtils.error( - "PetConfigManager", - "加载 PetConfig 配置失败:", - err, - ); + LogUtils.error("PetConfigManager", "加载 PetConfig 配置失败:", err); } } @@ -46,26 +43,20 @@ export class PetConfigManager extends Singleton { data.map((item) => { const config = parsePetConfigData(item); const frozenConfig = ConfigParseUtils.deepFreeze(config); - return ConfigParseUtils.createReadonlyProxy( - frozenConfig, - "PetConfigData配置", - ); + return ConfigParseUtils.createReadonlyProxy(frozenConfig, "PetConfigData配置"); }), ); this.configMap.clear(); + for (const config of this.configList) { - this.configMap.set(config.id, config); + this.configMap.set((config as any).id, config); } - // 深度冻结配置映射,防止运行时修改 ConfigParseUtils.deepFreeze(this.configMap); } public getConfig(id: number): PetConfigData | null { if (!this.isLoaded) { - LogUtils.warn( - "PetConfigManager", - "PetConfig 配置尚未加载完成,请等待加载完成", - ); + LogUtils.warn("PetConfigManager", "PetConfig 配置尚未加载完成,请等待加载完成"); return null; } return this.configMap.get(id) || null; @@ -73,10 +64,7 @@ export class PetConfigManager extends Singleton { public getAllConfigs(): PetConfigData[] { if (!this.isLoaded) { - LogUtils.warn( - "PetConfigManager", - "PetConfig 配置尚未加载完成,请等待加载完成", - ); + LogUtils.warn("PetConfigManager", "PetConfig 配置尚未加载完成,请等待加载完成"); return []; } return [...this.configList]; diff --git a/assets/configs/generated/core/PetPartConfigData.ts b/assets/configs/generated/core/PetPartConfigData.ts index 2f5b166..6a81570 100644 --- a/assets/configs/generated/core/PetPartConfigData.ts +++ b/assets/configs/generated/core/PetPartConfigData.ts @@ -1,130 +1,71 @@ - - - - - -import { ConfigParseUtils } from './ConfigParseUtils'; - - - -import { DressSourceType } from './Enums'; - - - - - - +import { ConfigParseUtils } from "./ConfigParseUtils"; /** * PetPartConfig数据结构 */ export class PetPartConfigData { - private _id: number; + public get id(): number { + return this._id; + } private _name: string; - - private _bundle: string; - - private _path: string; - - private _sourceType: DressSourceType; - - - - - /** id */ - - public get id(): number { - - return this._id; - - } - - - - /** 装扮名称 */ - public get name(): string { - return this._name; - } - - - /** bundle */ - - public get bundle(): string { - - return this._bundle; - + private _sourceName: string; + public get sourceName(): string { + return this._sourceName; } - - - /** 资源路径 */ - - public get path(): string { - - return this._path; - + private _type: number; + public get type(): number { + return this._type; } - - - /** 资源类型 */ - - public get sourceType(): DressSourceType { - + private _sourceType: number; + public get sourceType(): number { return this._sourceType; - } + private _quality: number; + public get quality(): number { + return this._quality; + } public constructor( - id: number, - name: string, - - bundle: string, - - path: string, - - sourceType: DressSourceType - + sourceName: string, + type: number, + sourceType: number, + quality: number, ) { - this._id = id; - this._name = name; - - this._bundle = bundle; - - this._path = path; - + this._sourceName = sourceName; + this._type = type; this._sourceType = sourceType; - + this._quality = quality; } } - /** * 解析配置数据 */ export function parsePetPartConfigData(data: any): PetPartConfigData { return new PetPartConfigData( - ConfigParseUtils.parseInt(data.id), ConfigParseUtils.parseString(data.name), - ConfigParseUtils.parseString(data.bundle), + ConfigParseUtils.parseString(data.sourceName), - ConfigParseUtils.parseString(data.path), + ConfigParseUtils.parseInt(data.type), - data.sourceType as DressSourceType + ConfigParseUtils.parseInt(data.sourceType), + ConfigParseUtils.parseInt(data.quality), ); -} \ No newline at end of file +} diff --git a/assets/configs/generated/core/PetPartConfigManager.ts b/assets/configs/generated/core/PetPartConfigManager.ts index 879c7e4..9a630ea 100644 --- a/assets/configs/generated/core/PetPartConfigManager.ts +++ b/assets/configs/generated/core/PetPartConfigManager.ts @@ -1,11 +1,11 @@ import { JsonAsset } from "cc"; -import { ResManager } from "@max-studio/core/res/ResManager"; import { singleton, Singleton } from "@max-studio/core/Singleton"; import LogUtils from "@max-studio/core/utils/LogUtils"; import { ConfigParseUtils } from "./ConfigParseUtils"; import { PetPartConfigData, parsePetPartConfigData } from "./PetPartConfigData"; +import ResManager from "@max-studio/core/res/ResManager"; /** * PetPartConfig配置管理器 @@ -13,10 +13,11 @@ import { PetPartConfigData, parsePetPartConfigData } from "./PetPartConfigData"; * ⚠️ 此文件由配置表生成器自动生成,请勿手动修改! * 如需修改,请编辑对应的Excel配置文件,然后重新生成 */ -@singleton() +@singleton({ auto: true }) export class PetPartConfigManager extends Singleton { private configList: readonly PetPartConfigData[] = []; private configMap = new Map(); + private isLoaded = false; protected async onInit(): Promise { @@ -25,19 +26,15 @@ export class PetPartConfigManager extends Singleton { private async loadConfig(): Promise { try { - const asset = await ResManager.getInstance().loadAsset( - "generated/data/PetPartConfig", - JsonAsset, - "configs", - ); + const { err, asset } = await ResManager.getInstance().loadAsset({ + path: "generated/data/PetPartConfig", + type: JsonAsset, + bundle: "configs", + }); this.parseConfig(asset.json); this.isLoaded = true; } catch (err) { - LogUtils.error( - "PetPartConfigManager", - "加载 PetPartConfig 配置失败:", - err, - ); + LogUtils.error("PetPartConfigManager", "加载 PetPartConfig 配置失败:", err); } } @@ -46,26 +43,20 @@ export class PetPartConfigManager extends Singleton { data.map((item) => { const config = parsePetPartConfigData(item); const frozenConfig = ConfigParseUtils.deepFreeze(config); - return ConfigParseUtils.createReadonlyProxy( - frozenConfig, - "PetPartConfigData配置", - ); + return ConfigParseUtils.createReadonlyProxy(frozenConfig, "PetPartConfigData配置"); }), ); this.configMap.clear(); + for (const config of this.configList) { - this.configMap.set(config.id, config); + this.configMap.set((config as any).id, config); } - // 深度冻结配置映射,防止运行时修改 ConfigParseUtils.deepFreeze(this.configMap); } public getConfig(id: number): PetPartConfigData | null { if (!this.isLoaded) { - LogUtils.warn( - "PetPartConfigManager", - "PetPartConfig 配置尚未加载完成,请等待加载完成", - ); + LogUtils.warn("PetPartConfigManager", "PetPartConfig 配置尚未加载完成,请等待加载完成"); return null; } return this.configMap.get(id) || null; @@ -73,10 +64,7 @@ export class PetPartConfigManager extends Singleton { public getAllConfigs(): PetPartConfigData[] { if (!this.isLoaded) { - LogUtils.warn( - "PetPartConfigManager", - "PetPartConfig 配置尚未加载完成,请等待加载完成", - ); + LogUtils.warn("PetPartConfigManager", "PetPartConfig 配置尚未加载完成,请等待加载完成"); return []; } return [...this.configList]; diff --git a/assets/configs/generated/data/PetConfig.json b/assets/configs/generated/data/PetConfig.json index db01c5f..f23fafa 100644 --- a/assets/configs/generated/data/PetConfig.json +++ b/assets/configs/generated/data/PetConfig.json @@ -1,186 +1,272 @@ [ { - "id": 1001, + "id": "1001", "key": "chenghuang", "bundle": "pet-spine", "path": "ChengHuang", - "color": "#00000000" + "name": "", + "color": "#00000000", + "desc": "" }, { - "id": 1002, + "id": "1002", "key": "dangkang", "bundle": "pet-spine", "path": "DangKang", - "color": "#00000000" + "name": "", + "color": "#00000000", + "desc": "" }, { - "id": 1003, + "id": "1003", "key": "shuoshu", "bundle": "pet-spine", - "path": "ShuoShu" + "path": "ShuoShu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1004, + "id": "1004", "key": "jiuwei", "bundle": "pet-spine", "path": "JiuWei", - "name": "精卫" + "name": "精卫", + "color": "", + "desc": "" }, { - "id": 1005, + "id": "1005", "key": "qiongqi", "bundle": "pet-spine", "path": "QiongQi", - "name": "穷奇" + "name": "穷奇", + "color": "", + "desc": "" }, { - "id": 1006, + "id": "1006", "key": "tiangou", "bundle": "pet-spine", - "path": "TianGou" + "path": "TianGou", + "name": "", + "color": "", + "desc": "" }, { - "id": 1007, + "id": "1007", "key": "xiangliu", "bundle": "pet-spine", - "path": "XiangLiu" + "path": "XiangLiu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1008, + "id": "1008", "key": "lili", "bundle": "pet-spine", - "path": "LiLi" + "path": "LiLi", + "name": "", + "color": "", + "desc": "" }, { - "id": 1009, + "id": "1009", "key": "yugong", "bundle": "pet-spine", - "path": "YuGong" + "path": "YuGong", + "name": "", + "color": "", + "desc": "" }, { - "id": 1010, + "id": "1010", "key": "yutu", "bundle": "pet-spine", - "path": "YuTu" + "path": "YuTu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1011, + "id": "1011", "key": "zhurong", "bundle": "pet-spine", - "path": "ZhuRong" + "path": "ZhuRong", + "name": "", + "color": "", + "desc": "" }, { - "id": 1012, + "id": "1012", "key": "changyou", "bundle": "pet-spine", - "path": "Changyou" + "path": "Changyou", + "name": "", + "color": "", + "desc": "" }, { - "id": 1013, + "id": "1013", "key": "dijiang", "bundle": "pet-spine", - "path": "Dijiang" + "path": "Dijiang", + "name": "", + "color": "", + "desc": "" }, { - "id": 1014, + "id": "1014", "key": "jili", "bundle": "pet-spine", - "path": "Jili" + "path": "Jili", + "name": "", + "color": "", + "desc": "" }, { - "id": 1015, + "id": "1015", "key": "shusi", "bundle": "pet-spine", - "path": "Shusi" + "path": "Shusi", + "name": "", + "color": "", + "desc": "" }, { - "id": 1016, + "id": "1016", "key": "wanv", "bundle": "pet-spine", - "path": "Wanv" + "path": "Wanv", + "name": "", + "color": "", + "desc": "" }, { - "id": 1017, + "id": "1017", "key": "xuangui", "bundle": "pet-spine", - "path": "Xuangui" + "path": "Xuangui", + "name": "", + "color": "", + "desc": "" }, { - "id": 1018, + "id": "1018", "key": "yingyu", "bundle": "pet-spine", - "path": "Yingyu" + "path": "Yingyu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1019, + "id": "1019", "key": "yunque", "bundle": "pet-spine", - "path": "Yunque" + "path": "Yunque", + "name": "", + "color": "", + "desc": "" }, { - "id": 1020, + "id": "1020", "key": "pangding", "bundle": "pet-spine", - "path": "PangDing" + "path": "PangDing", + "name": "", + "color": "", + "desc": "" }, { - "id": 1021, + "id": "1021", "key": "shanyuan", "bundle": "pet-spine", - "path": "ShanYuan" + "path": "ShanYuan", + "name": "", + "color": "", + "desc": "" }, { - "id": 1022, + "id": "1022", "key": "zhuyin", "bundle": "pet-spine", - "path": "ZhuYin" + "path": "ZhuYin", + "name": "", + "color": "", + "desc": "" }, { - "id": 1023, + "id": "1023", "key": "yingwu", "bundle": "pet-spine", - "path": "YingWu" + "path": "YingWu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1024, + "id": "1024", "key": "linghu", "bundle": "pet-spine", - "path": "LingHu" + "path": "LingHu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1025, + "id": "1025", "key": "bailuwang", "bundle": "pet-spine", - "path": "BaiLuWang" + "path": "BaiLuWang", + "name": "", + "color": "", + "desc": "" }, { - "id": 1026, + "id": "1026", "key": "xuanwu", "bundle": "pet-spine", - "path": "XuanWu" + "path": "XuanWu", + "name": "", + "color": "", + "desc": "" }, { - "id": 1027, + "id": "1027", "key": "fengyou", "bundle": "pet-spine", - "path": "FengYou" + "path": "FengYou", + "name": "", + "color": "", + "desc": "" }, { - "id": 1028, + "id": "1028", "key": "nianshou", "bundle": "pet-spine", - "path": "NianShou" + "path": "NianShou", + "name": "", + "color": "", + "desc": "" }, { - "id": 1029, + "id": "1029", "key": "fenghuang", "bundle": "pet-spine", - "path": "FengHuang" + "path": "FengHuang", + "name": "", + "color": "", + "desc": "" }, { - "id": 1030, + "id": "1030", "key": "touzishe", "bundle": "pet-spine", - "path": "TouZiShe" + "path": "TouZiShe", + "name": "", + "color": "", + "desc": "" } ] \ No newline at end of file diff --git a/assets/configs/generated/data/PetPartConfig.json b/assets/configs/generated/data/PetPartConfig.json index ea8ac9d..9d107c0 100644 --- a/assets/configs/generated/data/PetPartConfig.json +++ b/assets/configs/generated/data/PetPartConfig.json @@ -2,398 +2,961 @@ { "id": 20001, "name": "舞狮套装", - "bundle": "pet-spine", - "sourceType": "1" + "sourceName": "", + "type": 0, + "sourceType": 1, + "quality": 3 }, { "id": 20002, "name": "可爱熊套装", - "bundle": "pet-spine", - "sourceType": "1" + "sourceName": "", + "type": 0, + "sourceType": 1, + "quality": 2 }, { "id": 20003, "name": "格格套装", - "bundle": "pet-spine", - "sourceType": "1" + "sourceName": "", + "type": 0, + "sourceType": 1, + "quality": 3 }, { "id": 20004, "name": "关二爷套装", - "bundle": "pet-spine", - "sourceType": "1" + "sourceName": "", + "type": 0, + "sourceType": 1, + "quality": 4 }, { - "id": 20501, + "id": 20005, + "name": "当康-鼻子", + "sourceName": "dk_bizi", + "type": 3, + "sourceType": 1, + "quality": 1 + }, + { + "id": 20006, + "name": "狸力-鼻子", + "sourceName": "yz_bz", + "type": 3, + "sourceType": 1, + "quality": 1 + }, + { + "id": 20007, + "name": "吉利-喙", + "sourceName": "jili_hui", + "type": 3, + "sourceType": 1, + "quality": 1 + }, + { + "id": 20008, + "name": "云雀-喙", + "sourceName": "yunque_hui", + "type": 3, + "sourceType": 1, + "quality": 1 + }, + { + "id": 20009, + "name": "鹦鹉-喙", + "sourceName": "yw_hui", + "type": 3, + "sourceType": 1, + "quality": 1 + }, + { + "id": 20010, + "name": "凤凰-喙", + "sourceName": "fh_hui", + "type": 3, + "sourceType": 1, + "quality": 1 + }, + { + "id": 20011, "name": "舞狮玲珑球", - "bundle": "pet-spine", - "path": "bag_20501", - "sourceType": "1" + "sourceName": "bag_20501", + "type": 1, + "sourceType": 1, + "quality": 3 }, { - "id": 20502, + "id": 20012, "name": "舞狮帽", - "bundle": "pet-spine", - "path": "hat_20502", - "sourceType": "4" + "sourceName": "hat_20502", + "type": 2, + "sourceType": 4, + "quality": 3 }, { - "id": 20503, + "id": 20013, "name": "无", - "bundle": "pet-spine", - "path": "eye_23001", - "sourceType": "1" + "sourceName": "eye_23001", + "type": 3, + "sourceType": 1, + "quality": 3 }, { - "id": 20504, + "id": 20014, "name": "舞狮领带", - "bundle": "pet-spine", - "path": "tie_20504", - "sourceType": "1" + "sourceName": "tie_20504", + "type": 4, + "sourceType": 1, + "quality": 3 }, { - "id": 20506, + "id": 20015, "name": "可爱熊挎包", - "bundle": "pet-spine", - "path": "bag_20506", - "sourceType": "2" + "sourceName": "bag_20506", + "type": 1, + "sourceType": 2, + "quality": 2 }, { - "id": 20507, + "id": 20016, "name": "可爱熊头饰", - "bundle": "pet-spine", - "path": "hat_20507", - "sourceType": "1" + "sourceName": "hat_20507", + "type": 2, + "sourceType": 1, + "quality": 2 }, { - "id": 20508, + "id": 20017, "name": "可爱熊面饰", - "bundle": "pet-spine", - "path": "eye_20508", - "sourceType": "1" + "sourceName": "eye_20508", + "type": 3, + "sourceType": 1, + "quality": 2 }, { - "id": 20509, + "id": 20018, "name": "可爱熊围兜", - "bundle": "pet-spine", - "path": "tie_20509", - "sourceType": "1" + "sourceName": "tie_20509", + "type": 4, + "sourceType": 1, + "quality": 2 }, { - "id": 20511, + "id": 20019, "name": "关公盾牌", - "bundle": "pet-spine", - "path": "bag_20511", - "sourceType": "3" + "sourceName": "bag_20511", + "type": 1, + "sourceType": 3, + "quality": 4 }, { - "id": 20512, + "id": 20020, "name": "关公帽", - "bundle": "pet-spine", - "path": "hat_20512", - "sourceType": "3" + "sourceName": "hat_20512", + "type": 2, + "sourceType": 3, + "quality": 4 }, { - "id": 20513, + "id": 20021, "name": "关公眉毛", - "bundle": "pet-spine", - "path": "eye_20513", - "sourceType": "3" + "sourceName": "eye_20513", + "type": 3, + "sourceType": 3, + "quality": 4 }, { - "id": 20514, + "id": 20022, "name": "关公胡须", - "bundle": "pet-spine", - "path": "tie_20514", - "sourceType": "3" + "sourceName": "tie_20514", + "type": 4, + "sourceType": 3, + "quality": 4 }, { - "id": 20515, + "id": 20023, "name": "青龙刀", - "bundle": "pet-spine", - "path": "yanyuedao", - "sourceType": "3" + "sourceName": "yanyuedao", + "type": 5, + "sourceType": 3, + "quality": 4 }, { - "id": 20516, + "id": 20024, "name": "格格扇子", - "bundle": "pet-spine", - "path": "bag_20516", - "sourceType": "1" + "sourceName": "bag_20516", + "type": 1, + "sourceType": 1, + "quality": 3 }, { - "id": 20517, + "id": 20025, "name": "格格帽", - "bundle": "pet-spine", - "path": "hat_20517", - "sourceType": "4" + "sourceName": "hat_20517", + "type": 2, + "sourceType": 4, + "quality": 3 }, { - "id": 20518, - "bundle": "pet-spine", - "sourceType": "1" + "id": 20026, + "name": "格格眼饰-备用", + "sourceName": "", + "type": 3, + "sourceType": 1, + "quality": 3 }, { - "id": 20519, + "id": 20027, "name": "格格围巾", - "bundle": "pet-spine", - "path": "tie_20519", - "sourceType": "1" + "sourceName": "tie_20519", + "type": 4, + "sourceType": 1, + "quality": 3 }, { - "id": 20520, - "bundle": "pet-spine", - "sourceType": "1" + "id": 20028, + "name": "格格炫光-备用", + "sourceName": "", + "type": 5, + "sourceType": 1, + "quality": 3 }, { - "id": 21001, + "id": 20029, + "name": "青蛇法宝", + "sourceName": "bag_20521", + "type": 1, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20030, + "name": "青蛇发冠", + "sourceName": "hat_20522", + "type": 2, + "sourceType": 5, + "quality": 4 + }, + { + "id": 20031, + "name": "青蛇面饰", + "sourceName": "eye_20523", + "type": 3, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20032, + "name": "青蛇领饰", + "sourceName": "tie_20524", + "type": 4, + "sourceType": 1, + "quality": 4 + }, + { + "id": 20033, + "name": "青蛇莲花", + "sourceName": "wing_20525", + "type": 5, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20034, + "name": "白蛇法宝", + "sourceName": "bag_20526", + "type": 1, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20035, + "name": "白蛇发冠", + "sourceName": "hat_20527", + "type": 2, + "sourceType": 5, + "quality": 4 + }, + { + "id": 20036, + "name": "白蛇面饰", + "sourceName": "eye_20528", + "type": 3, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20037, + "name": "白蛇领饰", + "sourceName": "tie_20529", + "type": 4, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20038, + "name": "白蛇莲花", + "sourceName": "wing_20530", + "type": 5, + "sourceType": 0, + "quality": 4 + }, + { + "id": 20039, + "name": "少女战服", + "sourceName": "bag_20531", + "type": 1, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20040, + "name": "少女头饰", + "sourceName": "hat_20532", + "type": 2, + "sourceType": 5, + "quality": 4 + }, + { + "id": 20041, + "name": "小樱面饰", + "sourceName": "eye_20533", + "type": 3, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20042, + "name": "战服领带", + "sourceName": "tie_20534", + "type": 4, + "sourceType": 1, + "quality": 4 + }, + { + "id": 20043, + "name": "小樱仙女棒", + "sourceName": "wing_20535", + "type": 5, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20044, + "name": "冰雪长发", + "sourceName": "hat_20537", + "type": 2, + "sourceType": 5, + "quality": 2 + }, + { + "id": 20045, + "name": "小雪人", + "sourceName": "wing_20540", + "type": 5, + "sourceType": 3, + "quality": 2 + }, + { + "id": 20046, + "name": "鲜花篮子", + "sourceName": "bag_20541", + "type": 1, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20047, + "name": "公主发饰", + "sourceName": "hat_20542", + "type": 2, + "sourceType": 5, + "quality": 3 + }, + { + "id": 20048, + "name": "公主服装", + "sourceName": "tie_24017", + "type": 4, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20049, + "name": "苹果精灵", + "sourceName": "wing_20545", + "type": 5, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20050, + "name": "宝藏地图", + "sourceName": "bag_20546", + "type": 1, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20051, + "name": "航海帽", + "sourceName": "hat_20547", + "type": 2, + "sourceType": 5, + "quality": 3 + }, + { + "id": 20052, + "name": "海盗眼罩", + "sourceName": "eye_23011", + "type": 3, + "sourceType": 1, + "quality": 3 + }, + { + "id": 20053, + "name": "船长胡须", + "sourceName": "tie_24015", + "type": 4, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20054, + "name": "航海宝藏", + "sourceName": "wing_20550", + "type": 5, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20055, + "name": "时光飞毯", + "sourceName": "wing_20555", + "type": 5, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20056, + "name": "魔法手杖", + "sourceName": "wing_20560", + "type": 5, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20057, + "name": "许仙油伞", + "sourceName": "bag_20561", + "type": 1, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20058, + "name": "许仙帽", + "sourceName": "hat_22012", + "type": 2, + "sourceType": 1, + "quality": 4 + }, + { + "id": 20059, + "name": "许仙长袍", + "sourceName": "tie_24016", + "type": 4, + "sourceType": 2, + "quality": 4 + }, + { + "id": 20060, + "name": "许仙背篓", + "sourceName": "wing_20565", + "type": 5, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20061, + "name": "超人披风", + "sourceName": "bag_20571", + "type": 1, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20062, + "name": "超人秀发", + "sourceName": "hat_20572", + "type": 2, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20063, + "name": "记者眼镜", + "sourceName": "eye_23013", + "type": 3, + "sourceType": 1, + "quality": 4 + }, + { + "id": 20064, + "name": "超人战衣", + "sourceName": "tie_24019", + "type": 4, + "sourceType": 2, + "quality": 4 + }, + { + "id": 20065, + "name": "神奇战犬", + "sourceName": "wing_20575", + "type": 5, + "sourceType": 3, + "quality": 4 + }, + { + "id": 20066, + "name": "黑翼披风", + "sourceName": "bag_20551", + "type": 1, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20067, + "name": "夜行面具", + "sourceName": "eye_23012", + "type": 3, + "sourceType": 1, + "quality": 3 + }, + { + "id": 20068, + "name": "夜行铠甲", + "sourceName": "tie_24018", + "type": 4, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20069, + "name": "夜行战车", + "sourceName": "wing_20580", + "type": 5, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20070, + "name": "太空能量泵", + "sourceName": "bag_21015", + "type": 1, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20071, + "name": "太空供氧面罩", + "sourceName": "hat_22013", + "type": 2, + "sourceType": 4, + "quality": 3 + }, + { + "id": 20072, + "name": "太空服", + "sourceName": "tie_24021", + "type": 4, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20073, + "name": "飞行机甲", + "sourceName": "wing_20585", + "type": 5, + "sourceType": 3, + "quality": 3 + }, + { + "id": 20074, "name": "公文背包", - "bundle": "pet-spine", - "path": "bag_21001", - "sourceType": "1" + "sourceName": "bag_21001", + "type": 1, + "sourceType": 2, + "quality": 1 }, { - "id": 21002, + "id": 20075, "name": "旅行背包(蓝)", - "bundle": "pet-spine", - "path": "bag_21001", - "sourceType": "2" + "sourceName": "bag_21001", + "type": 1, + "sourceType": 2, + "quality": 1 }, { - "id": 21003, + "id": 20076, "name": "旅行背包(动画)", - "bundle": "pet-spine", - "path": "bag_21001", - "sourceType": "2" + "sourceName": "bag_21001", + "type": 1, + "sourceType": 2, + "quality": 1 }, { - "id": 21004, + "id": 20077, "name": "睡眠抱枕", - "bundle": "pet-spine", - "path": "bag_21004", - "sourceType": "2" + "sourceName": "bag_21004", + "type": 1, + "sourceType": 2, + "quality": 1 }, { - "id": 21005, + "id": 20078, "name": "手枪配饰", - "bundle": "pet-spine", - "path": "bag_21005", - "sourceType": "1" + "sourceName": "bag_21005", + "type": 1, + "sourceType": 2, + "quality": 1 }, { - "id": 21006, + "id": 20079, "name": "游侠钱袋", - "bundle": "pet-spine", - "path": "bag_21006", - "sourceType": "2" + "sourceName": "bag_21006", + "type": 1, + "sourceType": 2, + "quality": 2 }, { - "id": 21007, + "id": 20080, "name": "熊猫挎包", - "bundle": "pet-spine", - "path": "bag_21007", - "sourceType": "2" + "sourceName": "bag_21007", + "type": 1, + "sourceType": 2, + "quality": 1 }, { - "id": 22001, + "id": 20081, + "name": "魔法书", + "sourceName": "bag_21009", + "type": 1, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20082, + "name": "兔警官挎包", + "sourceName": "bag_21010", + "type": 1, + "sourceType": 2, + "quality": 2 + }, + { + "id": 20083, + "name": "铜锣烧", + "sourceName": "bag_21011", + "type": 1, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20084, + "name": "纯金腰带", + "sourceName": "bag_21014", + "type": 1, + "sourceType": 2, + "quality": 3 + }, + { + "id": 20085, "name": "魔术帽", - "bundle": "pet-spine", - "path": "hat_22001", - "sourceType": "1" + "sourceName": "hat_22001", + "type": 2, + "sourceType": 1, + "quality": 3 }, { - "id": 22002, + "id": 20086, "name": "魔术帽(变色)", - "bundle": "pet-spine", - "path": "hat_22001", - "sourceType": "2" + "sourceName": "hat_22001", + "type": 2, + "sourceType": 2, + "quality": 3 }, { - "id": 22003, + "id": 20087, "name": "魔术帽(动画)", - "bundle": "pet-spine", - "path": "hat_22001", - "sourceType": "2" + "sourceName": "hat_22001", + "type": 2, + "sourceType": 2, + "quality": 3 }, { - "id": 22004, - "bundle": "pet-spine", - "path": "hat_22001", - "sourceType": "2" + "id": 20088, + "name": "xx帽-备用", + "sourceName": "hat_22001", + "type": 2, + "sourceType": 2, + "quality": 1 }, { - "id": 22005, + "id": 20089, "name": "制服帽", - "bundle": "pet-spine", - "path": "hat_22006", - "sourceType": "1" + "sourceName": "hat_22006", + "type": 2, + "sourceType": 1, + "quality": 1 }, { - "id": 22006, + "id": 20090, "name": "休闲帽", - "bundle": "pet-spine", - "path": "hat_22003", - "sourceType": "1" + "sourceName": "hat_22003", + "type": 2, + "sourceType": 1, + "quality": 3 }, { - "id": 22007, + "id": 20091, "name": "牛仔帽", - "bundle": "pet-spine", - "path": "hat_22007", - "sourceType": "1" + "sourceName": "hat_22007", + "type": 2, + "sourceType": 1, + "quality": 1 }, { - "id": 23001, + "id": 20092, + "name": "兔警官帽", + "sourceName": "hat_22008", + "type": 2, + "sourceType": 1, + "quality": 2 + }, + { + "id": 20093, + "name": "蓝猫飞行帽", + "sourceName": "hat_22009", + "type": 2, + "sourceType": 4, + "quality": 3 + }, + { + "id": 20094, "name": "太阳镜(粉)", - "bundle": "pet-spine", - "path": "eye_23001", - "sourceType": "1" + "sourceName": "eye_23001", + "type": 3, + "sourceType": 1, + "quality": 3 }, { - "id": 23002, + "id": 20095, "name": "简框眼镜", - "bundle": "pet-spine", - "path": "eye_23002", - "sourceType": "1" + "sourceName": "eye_23002", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23003, + "id": 20096, "name": "墨镜", - "bundle": "pet-spine", - "path": "eye_23003", - "sourceType": "1" + "sourceName": "eye_23003", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23004, + "id": 20097, "name": "圆框饰品", - "bundle": "pet-spine", - "path": "eye_23004", - "sourceType": "1" + "sourceName": "eye_23004", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23005, + "id": 20098, "name": "爱心镜框", - "bundle": "pet-spine", - "path": "eye_23005", - "sourceType": "1" + "sourceName": "eye_23005", + "type": 3, + "sourceType": 1, + "quality": 2 }, { - "id": 23006, + "id": 20099, "name": "竹子墨镜", - "bundle": "pet-spine", - "path": "eye_23006", - "sourceType": "1" + "sourceName": "eye_23006", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23007, + "id": 20100, "name": "睡眠面罩", - "bundle": "pet-spine", - "path": "eye_23007", - "sourceType": "1" + "sourceName": "eye_23007", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23008, + "id": 20101, "name": "搞怪眼镜", - "bundle": "pet-spine", - "path": "eye_23008", - "sourceType": "1" + "sourceName": "eye_23008", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23009, + "id": 20102, "name": "游侠眼饰", - "bundle": "pet-spine", - "path": "eye_23009", - "sourceType": "1" + "sourceName": "eye_23009", + "type": 3, + "sourceType": 1, + "quality": 2 }, { - "id": 23010, - "name": "爱心镜框2", - "bundle": "pet-spine", - "path": "eye_23005", - "sourceType": "1" + "id": 20103, + "name": "英伦圆框", + "sourceName": "eye_23010", + "type": 3, + "sourceType": 1, + "quality": 3 }, { - "id": 23011, + "id": 20104, "name": "墨镜2", - "bundle": "pet-spine", - "path": "eye_23003", - "sourceType": "1" + "sourceName": "eye_23003", + "type": 3, + "sourceType": 1, + "quality": 1 }, { - "id": 23012, + "id": 20105, "name": "粉色眼镜2", - "bundle": "pet-spine", - "path": "eye_23001", - "sourceType": "1" + "sourceName": "eye_23001", + "type": 3, + "sourceType": 1, + "quality": 3 }, { - "id": 24001, + "id": 20106, "name": "粉蝴蝶结", - "bundle": "pet-spine", - "path": "tie_24001", - "sourceType": "1" + "sourceName": "tie_24001", + "type": 4, + "sourceType": 1, + "quality": 2 }, { - "id": 24002, + "id": 20107, "name": "紫蝴蝶结", - "bundle": "pet-spine", - "path": "tie_24002", - "sourceType": "1" + "sourceName": "tie_24002", + "type": 4, + "sourceType": 1, + "quality": 2 }, { - "id": 24003, + "id": 20108, "name": "制服领结", - "bundle": "pet-spine", - "path": "tie_24004", - "sourceType": "1" + "sourceName": "tie_24004", + "type": 4, + "sourceType": 1, + "quality": 1 }, { - "id": 24004, + "id": 20109, "name": "熊猫领结", - "bundle": "pet-spine", - "path": "tie_24003", - "sourceType": "1" + "sourceName": "tie_24003", + "type": 4, + "sourceType": 1, + "quality": 1 }, { - "id": 24005, + "id": 20110, "name": "制服领带", - "bundle": "pet-spine", - "path": "tie_24005", - "sourceType": "1" + "sourceName": "tie_24005", + "type": 4, + "sourceType": 1, + "quality": 1 }, { - "id": 24006, + "id": 20111, "name": "金项链", - "bundle": "pet-spine", - "path": "tie_24006", - "sourceType": "1" + "sourceName": "tie_24006", + "type": 4, + "sourceType": 1, + "quality": 3 }, { - "id": 24007, + "id": 20112, "name": "牛仔围巾", - "bundle": "pet-spine", - "path": "tie_24007", - "sourceType": "1" + "sourceName": "tie_24007", + "type": 4, + "sourceType": 1, + "quality": 1 }, { - "id": 25001, + "id": 20113, + "name": "魔法学院服", + "sourceName": "tie_24011", + "type": 4, + "sourceType": 1, + "quality": 3 + }, + { + "id": 20114, + "name": "兔警官服", + "sourceName": "tie_24012", + "type": 4, + "sourceType": 1, + "quality": 2 + }, + { + "id": 20115, + "name": "铃铛", + "sourceName": "tie_24013", + "type": 4, + "sourceType": 1, + "quality": 3 + }, + { + "id": 20116, + "name": "冰雪领带", + "sourceName": "tie_24014", + "type": 4, + "sourceType": 1, + "quality": 2 + }, + { + "id": 20117, + "name": "金属勋章", + "sourceName": "tie_24020", + "type": 4, + "sourceType": 1, + "quality": 3 + }, + { + "id": 20118, "name": "闪闪糖葫芦", - "bundle": "pet-spine", - "path": "tanghulu", - "sourceType": "0" + "sourceName": "tanghulu", + "type": 5, + "sourceType": 0, + "quality": 2 }, { - "id": 25002, + "id": 20119, "name": "青龙刀", - "bundle": "pet-spine", - "path": "yanyuedao", - "sourceType": "3" + "sourceName": "yanyuedao", + "type": 5, + "sourceType": 3, + "quality": 4 }, { - "id": 25003, + "id": 20120, "name": "爱心信件", - "bundle": "pet-spine", - "path": "qingshu", - "sourceType": "0" + "sourceName": "qingshu", + "type": 5, + "sourceType": 0, + "quality": 3 } -] \ No newline at end of file +] diff --git a/assets/games/prefabs/pet.meta b/assets/games/prefabs/pet.meta new file mode 100644 index 0000000..cba72d8 --- /dev/null +++ b/assets/games/prefabs/pet.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a53e21a6-1d72-42c3-a8ea-ce4cd0dc318f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/prefabs/pet/DressGlareNode.prefab b/assets/games/prefabs/pet/DressGlareNode.prefab new file mode 100644 index 0000000..1996f47 --- /dev/null +++ b/assets/games/prefabs/pet/DressGlareNode.prefab @@ -0,0 +1,63 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "DressGlareNode", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "DressGlareNode", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 2 + }, + "_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 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c46/YsCPVOJYA4mWEpNYRx" + } +] \ No newline at end of file diff --git a/assets/games/prefabs/pet/DressGlareNode.prefab.meta b/assets/games/prefabs/pet/DressGlareNode.prefab.meta new file mode 100644 index 0000000..b2ae43e --- /dev/null +++ b/assets/games/prefabs/pet/DressGlareNode.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "e8086588-8a5d-4210-bc27-389b6adcaf11", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "DressGlareNode" + } +} diff --git a/assets/games/prefabs/pet/DressSocketNode.prefab b/assets/games/prefabs/pet/DressSocketNode.prefab new file mode 100644 index 0000000..dea9b25 --- /dev/null +++ b/assets/games/prefabs/pet/DressSocketNode.prefab @@ -0,0 +1,340 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "DressSocketNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "DressSocketNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 8 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 14 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Texture", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 7 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c2tK6S82tEJq55LVlT4F3N" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 2, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a5XjaX0ABPP5RSoo98iHXa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "46WgrGcBpCU4AVxZHeUKo0", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Spine", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 13 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 8 + }, + "_enabled": true, + "__prefab": { + "__id__": 10 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.60222 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8PHvFTQdCub2YlQVztJGK" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 8 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": null, + "defaultSkin": "", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": -1, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0bLrMfCo1HH4sNbP27AV7B" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28LtEJQG9CerixgYrYjMCo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c46/YsCPVOJYA4mWEpNYRx", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/games/prefabs/pet/DressSocketNode.prefab.meta b/assets/games/prefabs/pet/DressSocketNode.prefab.meta new file mode 100644 index 0000000..6b8b05d --- /dev/null +++ b/assets/games/prefabs/pet/DressSocketNode.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "2366e791-ed40-4713-8037-8702c964ea37", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "DressSocketNode" + } +} diff --git a/assets/games/prefabs/uis/GameUI.prefab b/assets/games/prefabs/uis/GameUI.prefab new file mode 100644 index 0000000..24aa7c8 --- /dev/null +++ b/assets/games/prefabs/uis/GameUI.prefab @@ -0,0 +1,67 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "GameUI", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "GameUI", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 2 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c46/YsCPVOJYA4mWEpNYRx", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/games/prefabs/uis/GameUI.prefab.meta b/assets/games/prefabs/uis/GameUI.prefab.meta new file mode 100644 index 0000000..5f0f21a --- /dev/null +++ b/assets/games/prefabs/uis/GameUI.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "1369e7f1-056a-4e3d-8484-39be5dface1e", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "GameUI" + } +} diff --git a/assets/games/prefabs/uis/MainUI-001.prefab b/assets/games/prefabs/uis/MainUI-001.prefab new file mode 100644 index 0000000..b87feec --- /dev/null +++ b/assets/games/prefabs/uis/MainUI-001.prefab @@ -0,0 +1,16012 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "MainUI-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "MainUI-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 10 + }, + { + "__id__": 16 + }, + { + "__id__": 32 + }, + { + "__id__": 95 + }, + { + "__id__": 277 + }, + { + "__id__": 335 + }, + { + "__id__": 399 + }, + { + "__id__": 535 + } + ], + "_active": true, + "_components": [ + { + "__id__": 671 + }, + { + "__id__": 673 + }, + { + "__id__": 675 + } + ], + "_prefab": { + "__id__": 677 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1.053000000000111, + "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": "Background", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_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__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 2560, + "height": 1440 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "59ApMrYSdFZIux53LlO5eV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d307a7c5-d91b-4c85-8c48-4965cfc31276@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": "d1KS1iFNZJcY4sLrc6iyIk" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_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": 4, + "_originalHeight": 585, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2cb3xNiW9A66yJVP4JyGKz" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3PBF4Du9LQL7y+Thn9vfB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Floor", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 15 + }, + "_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__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 2560, + "height": 1440 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d8APeRvqtCwqSt7z3oeT4c" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 14 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "9ba6b93e-cf70-480a-accb-2e15866a8237@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "43Xhin1YpCrbzWx02kdYS2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7acQxsHSxLQLWDneDNZAhf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Character", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 17 + }, + { + "__id__": 23 + } + ], + "_active": true, + "_components": [ + { + "__id__": 29 + } + ], + "_prefab": { + "__id__": 31 + }, + "_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": "Shadow", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 22 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 13, + "y": -135, + "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__": 17 + }, + "_enabled": true, + "__prefab": { + "__id__": 19 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 816, + "height": 92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ddcHXmE61FCJBdNO7JihpZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 17 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "8a34180b-1be9-4293-894d-1bd2ed219054@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64XtLzbiNG75Pq/eUiIrG4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b1kyYZ7O9BgK8463EO+XUy", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Body", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 24 + }, + { + "__id__": 26 + } + ], + "_prefab": { + "__id__": 28 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 22.6, + "y": 141, + "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__": 23 + }, + "_enabled": true, + "__prefab": { + "__id__": 25 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 523, + "height": 558 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "43GAy2pxJFjKbsM+ncx56u" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 23 + }, + "_enabled": true, + "__prefab": { + "__id__": 27 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6b21b807-3fc0-4a26-a84f-97ce4387641f@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7cXFISoi1Fj4xRHc1e8C4k" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eeEbnNrkVJWKd6rPDg927N", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 16 + }, + "_enabled": true, + "__prefab": { + "__id__": 30 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "39Rb7BQo5HbIK46XSEXMge" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0axNtpnslOTrEOZNe4UVCR", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "TopRight", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 33 + }, + { + "__id__": 76 + } + ], + "_active": true, + "_components": [ + { + "__id__": 90 + }, + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 94 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1230, + "y": 670, + "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", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_prefab": { + "__id__": 34 + }, + "__editorExtras__": {} + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 33 + }, + "asset": { + "__uuid__": "60f72a13-68d6-4351-97aa-e8318e375dda", + "__expectedType__": "cc.Prefab" + }, + "fileId": "bdGzZ+kkFId65A9V5KZ7Oq", + "instance": { + "__id__": 35 + }, + "targetOverrides": [ + { + "__id__": 43 + }, + { + "__id__": 54 + }, + { + "__id__": 65 + } + ] + }, + { + "__type__": "cc.PrefabInstance", + "fileId": "beaJsqgdhBVYKDfEVQ/SVV", + "prefabRootNode": { + "__id__": 1 + }, + "mountedChildren": [], + "mountedComponents": [], + "propertyOverrides": [ + { + "__id__": 36 + }, + { + "__id__": 38 + }, + { + "__id__": 39 + }, + { + "__id__": 40 + }, + { + "__id__": 41 + } + ], + "removedComponents": [] + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 37 + }, + "propertyPath": [ + "_name" + ], + "value": "CurrencyContainer" + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "bdGzZ+kkFId65A9V5KZ7Oq" + ] + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 37 + }, + "propertyPath": [ + "_lpos" + ], + "value": { + "__type__": "cc.Vec3", + "x": -170.92, + "y": -40, + "z": 0 + } + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 37 + }, + "propertyPath": [ + "_lrot" + ], + "value": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + } + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 37 + }, + "propertyPath": [ + "_euler" + ], + "value": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 42 + }, + "propertyPath": [ + "_right" + ], + "value": 220.92 + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "37brNti6xEnIJ9voTEa0nD" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 44 + }, + "sourceInfo": null, + "propertyPath": [ + "label" + ], + "target": { + "__id__": 45 + }, + "targetInfo": { + "__id__": 53 + } + }, + { + "__type__": "8840cLY2CJILLaPKojNnI5y", + "_name": "", + "_objFlags": 0, + "__editorExtras__": { + "mountedRoot": { + "__id__": 45 + } + }, + "node": { + "__id__": 45 + }, + "_enabled": true, + "__prefab": { + "__id__": 46 + }, + "type": "gem", + "label": { + "__id__": 47 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "__editorExtras__": {} + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8eN4j7ilVCvKNo9Eu5eUiL" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 48 + }, + "_enabled": true, + "__prefab": { + "__id__": 52 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "20", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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.Node", + "_name": "ValueLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 45 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 51 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 19.5, + "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__": 48 + }, + "_enabled": true, + "__prefab": { + "__id__": 50 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 46.55999755859375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "09wKAKnbBB+5lZqBGPJIvn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1djLQFnGBH/bp9kcIVVJtl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44zvc167VCRKo7OrwxzXs0" + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "44zvc167VCRKo7OrwxzXs0" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 55 + }, + "sourceInfo": null, + "propertyPath": [ + "label" + ], + "target": { + "__id__": 56 + }, + "targetInfo": { + "__id__": 64 + } + }, + { + "__type__": "8840cLY2CJILLaPKojNnI5y", + "_name": "", + "_objFlags": 0, + "__editorExtras__": { + "mountedRoot": { + "__id__": 56 + } + }, + "node": { + "__id__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 57 + }, + "type": "gold", + "label": { + "__id__": 58 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "__editorExtras__": {} + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8eN4j7ilVCvKNo9Eu5eUiL" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 63 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "20", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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.Node", + "_name": "ValueLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 60 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 62 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 16.5, + "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__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 61 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 46.55999755859375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "09wKAKnbBB+5lZqBGPJIvn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1djLQFnGBH/bp9kcIVVJtl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44zvc167VCRKo7OrwxzXs0" + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "44zvc167VCRKo7OrwxzXs0" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 66 + }, + "sourceInfo": null, + "propertyPath": [ + "label" + ], + "target": { + "__id__": 67 + }, + "targetInfo": { + "__id__": 75 + } + }, + { + "__type__": "8840cLY2CJILLaPKojNnI5y", + "_name": "", + "_objFlags": 0, + "__editorExtras__": { + "mountedRoot": { + "__id__": 67 + } + }, + "node": { + "__id__": 67 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "type": "energy", + "label": { + "__id__": 69 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "__editorExtras__": {} + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8eN4j7ilVCvKNo9Eu5eUiL" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 70 + }, + "_enabled": true, + "__prefab": { + "__id__": 74 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "20", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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.Node", + "_name": "ValueLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 67 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 71 + }, + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 73 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20.5, + "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__": 70 + }, + "_enabled": true, + "__prefab": { + "__id__": 72 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 46.55999755859375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "09wKAKnbBB+5lZqBGPJIvn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1djLQFnGBH/bp9kcIVVJtl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44zvc167VCRKo7OrwxzXs0" + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "44zvc167VCRKo7OrwxzXs0" + ] + }, + { + "__type__": "cc.Node", + "_name": "Button_Settings", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 32 + }, + "_children": [ + { + "__id__": 77 + } + ], + "_active": true, + "_components": [ + { + "__id__": 83 + }, + { + "__id__": 85 + }, + { + "__id__": 87 + } + ], + "_prefab": { + "__id__": 89 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 50, + "y": -33, + "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": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 78 + }, + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 82 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -58.9, + "y": 7.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.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 77 + }, + "_enabled": true, + "__prefab": { + "__id__": 79 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 76 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "878FeEnmJHmKN2NL74IZsq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 77 + }, + "_enabled": true, + "__prefab": { + "__id__": 81 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f5e86e11-cf87-4122-a8a9-cf54dfef5c2d@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "63ibmIZ+NFCpOVXpRxBimZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4c+OhFhTtDnp2tPNBUDneY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 76 + }, + "_enabled": true, + "__prefab": { + "__id__": 84 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 145, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9c9GpbrtpBD4dW6MelYmUh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 76 + }, + "_enabled": true, + "__prefab": { + "__id__": 86 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb5a362d-fc0f-4441-ae22-1d0f4ceb7534@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": "5dSnCGI6ZF+JQUB8+39coy" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 76 + }, + "_enabled": true, + "__prefab": { + "__id__": 88 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_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": 0.9, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "69/p5UcrRHBJvynXopCrvo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fbZHzWxmtPWKjZbZqlEAb6", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 32 + }, + "_enabled": true, + "__prefab": { + "__id__": 91 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3096nJ5D1IQKvp6DT9me68" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 32 + }, + "_enabled": true, + "__prefab": { + "__id__": 93 + }, + "_alignFlags": 33, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfUJP/ZpJIjqyNlpy0azpf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5bR8GnNDZDb5JkVU+gGaSS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Bottom", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 96 + }, + { + "__id__": 119 + }, + { + "__id__": 142 + }, + { + "__id__": 250 + } + ], + "_active": true, + "_components": [ + { + "__id__": 270 + }, + { + "__id__": 272 + }, + { + "__id__": 274 + } + ], + "_prefab": { + "__id__": 276 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -673, + "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": "Button_Stage", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 97 + }, + { + "__id__": 103 + } + ], + "_active": true, + "_components": [ + { + "__id__": 109 + }, + { + "__id__": 111 + }, + { + "__id__": 113 + }, + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 118 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 536, + "y": 104, + "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": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 98 + }, + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 102 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -108.8, + "y": 17, + "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__": 97 + }, + "_enabled": true, + "__prefab": { + "__id__": 99 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 146, + "height": 135 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "92YWJfF5xBXZL7KNVXfskj" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 97 + }, + "_enabled": true, + "__prefab": { + "__id__": 101 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6ee6b626-392d-420f-abf9-9bcb931aee25@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "67j08VmWVDRqPpJwm7TzfN" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61s1hmTrJG5bBf0kXxGo5h", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 104 + }, + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 108 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 85.1, + "y": 12, + "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__": 103 + }, + "_enabled": true, + "__prefab": { + "__id__": 105 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153.9579620361328, + "height": 72.04 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "37OYkWCNlMyZtM09NWIt+I" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 103 + }, + "_enabled": true, + "__prefab": { + "__id__": 107 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "STAGE", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 54, + "_fontSize": 54, + "_fontFamily": "Arial", + "_lineHeight": 54, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -7 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "50j+OakMdKi7llMjie4AOR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fbldtx3VJOJ6LwmH8QC/Hr", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 110 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 452, + "height": 244 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dbhbGdLZdMaY+u+QuU8aFZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 112 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d57f0be0-7e43-4e62-8df4-96a63d82bee3@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": "c8XEjGlSxEhLLNNw80A2at" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 114 + }, + "_alignFlags": 36, + "_target": null, + "_left": 1054, + "_right": 518, + "_top": 0, + "_bottom": 29, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 452, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9e70YcksBMhY8IlwcDGozx" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 96 + }, + "_enabled": true, + "__prefab": { + "__id__": 116 + }, + "clickEvents": [ + { + "__id__": 117 + } + ], + "_interactable": true, + "_transition": 3, + "_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": 0.9, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d3AsxK8chNb6cN0PUyDCJa" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "66960EGAwNC45hmd1CpIoUb", + "handler": "showPet", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdR6JHVVxHSaDLORl/LFga", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Battle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 120 + }, + { + "__id__": 126 + } + ], + "_active": true, + "_components": [ + { + "__id__": 132 + }, + { + "__id__": 134 + }, + { + "__id__": 136 + }, + { + "__id__": 138 + } + ], + "_prefab": { + "__id__": 141 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1024, + "y": 104, + "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": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 121 + }, + { + "__id__": 123 + } + ], + "_prefab": { + "__id__": 125 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -122.5, + "y": 10, + "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__": 120 + }, + "_enabled": true, + "__prefab": { + "__id__": 122 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 146, + "height": 135 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27t5F1cwtBGqBteyI3V9IL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 120 + }, + "_enabled": true, + "__prefab": { + "__id__": 124 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "c84aa1b3-abd7-4760-8b42-3faee1032399@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ffNS4cggNMHanNXQUj0cbj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "223SU5NtZN+KxgZ+7iWJYz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 127 + }, + { + "__id__": 129 + } + ], + "_prefab": { + "__id__": 131 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 85.1, + "y": 11.9, + "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__": 126 + }, + "_enabled": true, + "__prefab": { + "__id__": 128 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 171.42393493652344, + "height": 69.04 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cc+T6Sgu9BJon4wWohjjzd" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 126 + }, + "_enabled": true, + "__prefab": { + "__id__": 130 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "BATTLE", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 54, + "_fontSize": 54, + "_fontFamily": "Arial", + "_lineHeight": 54, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 0.5, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -7 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b7wzicDQhEoKdGZn7VSyki" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdchVrHQZGYLa76a5HiSMN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 133 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 452, + "height": 244 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bpxCE/4FHj5g8Lgd/YiQ+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 135 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a6541019-8f70-4134-8738-61171b472393@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": "e1sTv0RhFMTqq1UBLWnEkc" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 137 + }, + "_alignFlags": 36, + "_target": null, + "_left": 0, + "_right": 30, + "_top": 0, + "_bottom": 29, + "_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": "8dKJXrgoJIFYh4CBou4P3F" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 139 + }, + "clickEvents": [ + { + "__id__": 140 + } + ], + "_interactable": true, + "_transition": 3, + "_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": 0.9, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "850H0yDi5CSr7v76DWEsJJ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "66960EGAwNC45hmd1CpIoUb", + "handler": "releasePet", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "80LhVaY0dNI6BUra+wH+Th", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ManMenu", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 143 + }, + { + "__id__": 161 + }, + { + "__id__": 191 + }, + { + "__id__": 221 + } + ], + "_active": true, + "_components": [ + { + "__id__": 245 + }, + { + "__id__": 247 + } + ], + "_prefab": { + "__id__": 249 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -1246.229, + "y": 179.573, + "z": 0.379 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.026176948307873156, + "y": 0, + "z": 0, + "w": 0.9996573249755573 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 3.000000000000001, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Button_Shop", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [ + { + "__id__": 144 + }, + { + "__id__": 150 + } + ], + "_active": true, + "_components": [ + { + "__id__": 156 + }, + { + "__id__": 158 + } + ], + "_prefab": { + "__id__": 160 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 125, + "y": -90, + "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": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 143 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 145 + }, + { + "__id__": 147 + } + ], + "_prefab": { + "__id__": 149 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 50.484, + "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__": 144 + }, + "_enabled": true, + "__prefab": { + "__id__": 146 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ca0R6dGQBPPZtq07e2JZcn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 144 + }, + "_enabled": true, + "__prefab": { + "__id__": 148 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "72b9e354-ad2a-4dfe-9f9d-39b8c58036ad@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6c+WNBV1lMfaEl2kl97sgM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b1ZBq2m4VGRacTr4U6f6c5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 143 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 151 + }, + { + "__id__": 153 + } + ], + "_prefab": { + "__id__": 155 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.672, + "y": -44.257, + "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__": 150 + }, + "_enabled": true, + "__prefab": { + "__id__": 152 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 113.844970703125, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1eqJdBJHNKbaN9vCgYY/ml" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 150 + }, + "_enabled": true, + "__prefab": { + "__id__": 154 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "SHOP", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 50, + "_overflow": 0, + "_enableWrapText": false, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "95K4xUhlJK/pzZ0iTIQpa5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77dJ3d02RLSaCFTZIPnF0D", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 143 + }, + "_enabled": true, + "__prefab": { + "__id__": 157 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53xYlidoVHbKr4lnXjpie9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 143 + }, + "_enabled": true, + "__prefab": { + "__id__": 159 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "839f2831-4606-457b-8c31-f26e74c4190f@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": "79VDCQrxhBeIV8OQKaq6vm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "15rxw8/NtKAoA0guJxrsQT", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Inventory", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [ + { + "__id__": 162 + }, + { + "__id__": 168 + }, + { + "__id__": 180 + } + ], + "_active": true, + "_components": [ + { + "__id__": 186 + }, + { + "__id__": 188 + } + ], + "_prefab": { + "__id__": 190 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 418, + "y": -90, + "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": "Icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 161 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 163 + }, + { + "__id__": 165 + } + ], + "_prefab": { + "__id__": 167 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1.305, + "y": 49.26, + "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__": 162 + }, + "_enabled": true, + "__prefab": { + "__id__": 164 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7aNVcwqD9H+aSncq7jNljg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 162 + }, + "_enabled": true, + "__prefab": { + "__id__": 166 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "948360c6-3456-4261-b3ec-2f11e01df595@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "445g/5Nd5NHaapYUaJCH1Q" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "722A6kI7lFKZRuVHeFEQx1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "AIram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 161 + }, + "_children": [ + { + "__id__": 169 + } + ], + "_active": true, + "_components": [ + { + "__id__": 175 + }, + { + "__id__": 177 + } + ], + "_prefab": { + "__id__": 179 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 103.228, + "y": 80.896, + "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": "Text_AIram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 170 + }, + { + "__id__": 172 + } + ], + "_prefab": { + "__id__": 174 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -2.601, + "y": 1.676, + "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__": 169 + }, + "_enabled": true, + "__prefab": { + "__id__": 171 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 21.1199951171875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c8johMrzpEu4JV+huVvTL0" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 169 + }, + "_enabled": true, + "__prefab": { + "__id__": 173 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "3", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 0, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "57N3Q1NIVLrYu+3gSVcHXQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "36KOrh5nFK9bzq1eRD89tL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 168 + }, + "_enabled": true, + "__prefab": { + "__id__": 176 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4cWs6n2rxGkJoO/HDySbcW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 168 + }, + "_enabled": true, + "__prefab": { + "__id__": 178 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "905656e6-dc49-4d12-a3ef-c478ad0df6c9@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": "95ZjXsaQ1D55nlx1MIqA9/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b0GxvGy71E2r4ZhyZWRqAY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_inventory", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 161 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 181 + }, + { + "__id__": 183 + } + ], + "_prefab": { + "__id__": 185 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -43.43, + "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__": 180 + }, + "_enabled": true, + "__prefab": { + "__id__": 182 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 236.40794372558594, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c57q9UP/NEXqm2y1GKeGTE" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 180 + }, + "_enabled": true, + "__prefab": { + "__id__": 184 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "INVENTORY", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 44, + "_fontSize": 44, + "_fontFamily": "Arial", + "_lineHeight": 50, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fUr/62AxADoKVJAih3mwu" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1eE0zSz4FN5JwUMvqk9WAc", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 161 + }, + "_enabled": true, + "__prefab": { + "__id__": 187 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "42wjUxY7tIgIwl3oHPfGaE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 161 + }, + "_enabled": true, + "__prefab": { + "__id__": 189 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "3e08e151-e2d3-4f3f-86d7-bedf2f3fd102@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": "cdrUDjyMpKmK6ONHnADfQS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aev22mFXFG67AgCnCO0BlE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Cards", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [ + { + "__id__": 192 + }, + { + "__id__": 198 + }, + { + "__id__": 204 + }, + { + "__id__": 210 + } + ], + "_active": true, + "_components": [ + { + "__id__": 216 + }, + { + "__id__": 218 + } + ], + "_prefab": { + "__id__": 220 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 711, + "y": -90, + "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": "Icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 191 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 193 + }, + { + "__id__": 195 + } + ], + "_prefab": { + "__id__": 197 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 3.541, + "y": 52.86, + "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__": 192 + }, + "_enabled": true, + "__prefab": { + "__id__": 194 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 142 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f0jW1U0kZDTJkW2LbPXkrt" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 192 + }, + "_enabled": true, + "__prefab": { + "__id__": 196 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "685b7f11-e1c2-4627-b298-495a31881977@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": "12V+OthNxB7p+KON5ZizD/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "80SFfkRRpHVbWIUSCnMnoz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Cards", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 191 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 199 + }, + { + "__id__": 201 + } + ], + "_prefab": { + "__id__": 203 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -46.812, + "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__": 198 + }, + "_enabled": true, + "__prefab": { + "__id__": 200 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 136.88494873046875, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "400k0HKGxArrW4tvrR7iU9" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 198 + }, + "_enabled": true, + "__prefab": { + "__id__": 202 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "CARDS", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 50, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1bKAaDpulFAabeb/RuyKLu" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "14VhXY58lFro48cxjKQ+NB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Notify_Cour", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 191 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 205 + }, + { + "__id__": 207 + } + ], + "_prefab": { + "__id__": 209 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 105.145, + "y": 80.921, + "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__": 204 + }, + "_enabled": true, + "__prefab": { + "__id__": 206 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "00idyXUDRC5b3QEXV4G3Wn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 204 + }, + "_enabled": true, + "__prefab": { + "__id__": 208 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "95268d6e-889e-4a9a-8768-bccc265e07fb@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": "0dCssBto9K66LOkoniZYCf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2b2oTzT5BLAr+6z8xLVQZt", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 191 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 211 + }, + { + "__id__": 213 + } + ], + "_prefab": { + "__id__": 215 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 98.956, + "y": 80.399, + "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__": 210 + }, + "_enabled": true, + "__prefab": { + "__id__": 212 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.239990234375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "54OTCfCElGdLsLVuB2ZOFI" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 210 + }, + "_enabled": true, + "__prefab": { + "__id__": 214 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "1", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 0, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "bfvlkgd2xGNot9tQIV9r8V" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39KJvpevdD87EB6qNZTfKC", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 217 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "756je+6UlGvL1JweCI8/md" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 219 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "3e08e151-e2d3-4f3f-86d7-bedf2f3fd102@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": "f6TWuMKzNLzIz04gF3EJO/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d0B0EcWfVFkoZ97d1H9Hei", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Clan", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [ + { + "__id__": 222 + }, + { + "__id__": 228 + }, + { + "__id__": 234 + } + ], + "_active": true, + "_components": [ + { + "__id__": 240 + }, + { + "__id__": 242 + } + ], + "_prefab": { + "__id__": 244 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1004, + "y": -90, + "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": "Icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 221 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 223 + }, + { + "__id__": 225 + } + ], + "_prefab": { + "__id__": 227 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 50.835, + "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__": 222 + }, + "_enabled": true, + "__prefab": { + "__id__": 224 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 133, + "height": 145 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d2TPr+YudAfZJXf9CkNFxr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 222 + }, + "_enabled": true, + "__prefab": { + "__id__": 226 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b00949e9-8e8a-444f-808a-e2c8fd1d1001@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "20EqN3UJ5Fn53tRxt99xyq" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b26sANhRdCnrKLU9rAvCBo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Clan", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 221 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 229 + }, + { + "__id__": 231 + } + ], + "_prefab": { + "__id__": 233 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -46.812, + "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__": 228 + }, + "_enabled": true, + "__prefab": { + "__id__": 230 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 107.45497131347656, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fKRE/exdMobxF/0cV+hwo" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 228 + }, + "_enabled": true, + "__prefab": { + "__id__": 232 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "CLAN", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 50, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "79AvtK1gNMzbETWI4ubY9S" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9hshOgOVIvY5zmQ13PtcA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Image", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 221 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 235 + }, + { + "__id__": 237 + } + ], + "_prefab": { + "__id__": 239 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 114.808, + "y": -63.888, + "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__": 234 + }, + "_enabled": true, + "__prefab": { + "__id__": 236 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 52, + "height": 80 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dftAgzzOdIIJw+p2Fw5jP1" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 234 + }, + "_enabled": true, + "__prefab": { + "__id__": 238 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7317bee3-c52e-460a-96d6-e8a932aad15b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "97I9LxTVhIKqpa7pzi+h1r" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1hpPGlmNDsqDEM+M2ICl7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 221 + }, + "_enabled": true, + "__prefab": { + "__id__": 241 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "183jWWcNtI/Y5L355ynOwG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 221 + }, + "_enabled": true, + "__prefab": { + "__id__": 243 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "3e08e151-e2d3-4f3f-86d7-bedf2f3fd102@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": "dcW5eTl69GJp1mRzMBydeP" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f5r8x4S7hDfoxlAh1zlrxm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 142 + }, + "_enabled": true, + "__prefab": { + "__id__": 246 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1129, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2esMiFRr9I35/VW50DdBnA" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 142 + }, + "_enabled": true, + "__prefab": { + "__id__": 248 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 43, + "_spacingY": 43, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "77GQwQKS9J362nS4H3Rb/s" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "83yUtklxxDH5EK4qzL2NIr", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Chat", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 251 + } + ], + "_active": true, + "_components": [ + { + "__id__": 265 + }, + { + "__id__": 267 + } + ], + "_prefab": { + "__id__": 269 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1187.978, + "y": 1123.592, + "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": "Notify_Count_Red_s", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 250 + }, + "_children": [ + { + "__id__": 252 + } + ], + "_active": true, + "_components": [ + { + "__id__": 258 + }, + { + "__id__": 260 + }, + { + "__id__": 262 + } + ], + "_prefab": { + "__id__": 264 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 19.721999999999994, + "y": 44.769, + "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": "Text_Alram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 251 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 253 + }, + { + "__id__": 255 + } + ], + "_prefab": { + "__id__": 257 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 2.498, + "y": 3.331, + "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__": 252 + }, + "_enabled": true, + "__prefab": { + "__id__": 254 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 51.959991455078125, + "height": 25.2 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c1BCzqll9OELeIMkye4nWW" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 252 + }, + "_enabled": true, + "__prefab": { + "__id__": 256 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "99+", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 20, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "baNTyR7kdFS4Kf0gHNsNo9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "911EBV3cxLfZTq0smGiIhl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 251 + }, + "_enabled": true, + "__prefab": { + "__id__": 259 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 79 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c25OHuBrJO/oulTIVVk1/4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 251 + }, + "_enabled": true, + "__prefab": { + "__id__": 261 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "479226fb-c608-4893-a76a-a0ebe6bcb595@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": "4estrgH1tFMJPS67zQNi5J" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 251 + }, + "_enabled": true, + "__prefab": { + "__id__": 263 + }, + "_alignFlags": 45, + "_target": null, + "_left": -3.7780000000000022, + "_right": -43.22200000000001, + "_top": -41.269000000000005, + "_bottom": 48.269, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 80, + "_originalHeight": 79, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "deJ3xs4ABPg6Tp0+i2473H" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0fWPNX039Bz7jjnQyznwAz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 250 + }, + "_enabled": true, + "__prefab": { + "__id__": 266 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 93, + "height": 86 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ebWsq7KL9P3bTny/Qru0Ap" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 250 + }, + "_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__": "ee79d7df-4c44-4107-9cb5-f47c1fb2fa95@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "54DhJiAxFOFo5qt9yp1w8I" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9e4qXYa8VCkqmtgUc1G8Go", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 271 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 2560, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1d0mM/4XhPOZpG/LmCOM1k" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 273 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a209014c-a495-4d3d-a6a7-74c55a98c1c4@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": "d4iSXCqPZDMIqpZVgtjnJg" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 275 + }, + "_alignFlags": 44, + "_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": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "03SpRZdC1PjIqKpLSTionr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49NRhbyIpEdbtB8OlSfBZB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "User_Info", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 278 + }, + { + "__id__": 322 + } + ], + "_active": true, + "_components": [ + { + "__id__": 332 + } + ], + "_prefab": { + "__id__": 334 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -918.948, + "y": 625.584, + "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": "Slider_IconType05", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 277 + }, + "_children": [ + { + "__id__": 279 + }, + { + "__id__": 301 + }, + { + "__id__": 313 + } + ], + "_active": true, + "_components": [ + { + "__id__": 319 + } + ], + "_prefab": { + "__id__": 321 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -63.541, + "y": 11.233, + "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": "Slider05_Frame", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 278 + }, + "_children": [ + { + "__id__": 280 + }, + { + "__id__": 286 + } + ], + "_active": true, + "_components": [ + { + "__id__": 292 + }, + { + "__id__": 294 + }, + { + "__id__": 296 + }, + { + "__id__": 298 + } + ], + "_prefab": { + "__id__": 300 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 25.459959249999997, + "y": -15.249939999999999, + "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": "Slider05_Fill", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 279 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 281 + }, + { + "__id__": 283 + } + ], + "_prefab": { + "__id__": 285 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -246.43767924999997, + "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__": 280 + }, + "_enabled": true, + "__prefab": { + "__id__": 282 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 243.4078, + "height": 55.44608 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a1DApy/ZJPb7/1TkEVeVWh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 280 + }, + "_enabled": true, + "__prefab": { + "__id__": 284 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7ebbd0e7-937f-4777-bff1-ae1b6b32a895@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0.2, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fasDZ2pqhBBq5AoqWfOKfY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "629aZ7eixLYZC5E+2TJLaV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 279 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 287 + }, + { + "__id__": 289 + } + ], + "_prefab": { + "__id__": 291 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.601, + "y": 0.589, + "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__": 286 + }, + "_enabled": true, + "__prefab": { + "__id__": 288 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 146.30796813964844, + "height": 85.9 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a46Pq/f31NSY7d0+BgOCjw" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 286 + }, + "_enabled": true, + "__prefab": { + "__id__": 290 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "183/400", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 65, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "60ji/hWDBBqIEx80jgCUgX" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a6Eq+mi9dIZb0/pW8EaPcN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 279 + }, + "_enabled": true, + "__prefab": { + "__id__": 293 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 492.87535849999995, + "height": 62.10606000000001 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f6zBAX7opMJovd2E6PGchS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 279 + }, + "_enabled": true, + "__prefab": { + "__id__": 295 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a0061d0e-ad64-4b44-bcc9-f48006dad69c@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": "e4vAjhHFdF6YidNY3PziQe" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 279 + }, + "_enabled": true, + "__prefab": { + "__id__": 297 + }, + "_alignFlags": 45, + "_target": null, + "_left": 51.38168, + "_right": 0.4617615, + "_top": 47.02851, + "_bottom": 16.52863, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0.461761, + "_originalHeight": 16.52863, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b5sZJv8YVKC6mry0YHq7Xe" + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 279 + }, + "_enabled": true, + "__prefab": { + "__id__": 299 + }, + "_barSprite": { + "__id__": 283 + }, + "_mode": 0, + "_totalLength": 486.8156, + "_progress": 0.5, + "_reverse": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "67JeHU0T9B97o9456XS0Ar" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27erb6oYZOjZXQe/noSKcD", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Slider05_Icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 278 + }, + "_children": [ + { + "__id__": 302 + } + ], + "_active": true, + "_components": [ + { + "__id__": 308 + }, + { + "__id__": 310 + } + ], + "_prefab": { + "__id__": 312 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -223.1801, + "y": -1.830017, + "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": "Text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 301 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 303 + }, + { + "__id__": 305 + } + ], + "_prefab": { + "__id__": 307 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.201, + "y": 7.6, + "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__": 302 + }, + "_enabled": true, + "__prefab": { + "__id__": 304 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 39.67999267578125, + "height": 83.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "84f5awIrlArrbk6fksjj9z" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 302 + }, + "_enabled": true, + "__prefab": { + "__id__": 306 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "3", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 60, + "_fontSize": 60, + "_fontFamily": "Arial", + "_lineHeight": 60, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 4, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1GgOsdaZLIajbroyXZ45e" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9H8YujRxE37n0rLmMzMAu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 301 + }, + "_enabled": true, + "__prefab": { + "__id__": 309 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9603CmublGCpElPhg4YLB5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 301 + }, + "_enabled": true, + "__prefab": { + "__id__": 311 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6b2724c4-304a-408f-9137-9d118894be7d@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": "013eWwekxMgaAPEPYgtvrn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02PcnrF6xOv6ybMdh2TcxN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 278 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 314 + }, + { + "__id__": 316 + } + ], + "_prefab": { + "__id__": 318 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -115.836, + "y": 43.07, + "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__": 313 + }, + "_enabled": true, + "__prefab": { + "__id__": 315 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 104.19595336914062, + "height": 85.9 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ben7VXyENIxYEaNzliXjPf" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 313 + }, + "_enabled": true, + "__prefab": { + "__id__": 317 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Ryuen", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 37, + "_fontSize": 37, + "_fontFamily": "Arial", + "_lineHeight": 65, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "09lcVyCkBE+Lfli3cj/oWn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9A7jRuwpAoKoYcZ8bugcG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 278 + }, + "_enabled": true, + "__prefab": { + "__id__": 320 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 544.7188, + "height": 125.6632 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5fpigAO5FGRZuPj+W3lkaN" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1BsNZ50xIiISAWHO4ZvgV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Reward", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 277 + }, + "_children": [ + { + "__id__": 323 + } + ], + "_active": true, + "_components": [ + { + "__id__": 329 + } + ], + "_prefab": { + "__id__": 331 + }, + "_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": "Icon_Reward", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 322 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 324 + }, + { + "__id__": 326 + } + ], + "_prefab": { + "__id__": 328 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 273.03, + "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__": 323 + }, + "_enabled": true, + "__prefab": { + "__id__": 325 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 81 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "13z+hUJqpMbqQzS0mhUSTW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 323 + }, + "_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__": "7414e341-64d4-4958-bf20-7bb75c61c634@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bbNjmC1TFKBYg0ctTnAEoE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c8GtwD3iBBDpDZpWsBK6/1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 322 + }, + "_enabled": true, + "__prefab": { + "__id__": 330 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "93YpVRu/lEmqBUqEoXKCbc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3epu/iEoFMuJPjcHO2Wjvd", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 277 + }, + "_enabled": true, + "__prefab": { + "__id__": 333 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 722.8123, + "height": 184.1243 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83KOElUctN5rNFs1V7gce+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2cACkFb3ZMAZORvCLOCliE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Chest_Info", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 336 + }, + { + "__id__": 366 + }, + { + "__id__": 378 + }, + { + "__id__": 388 + } + ], + "_active": true, + "_components": [ + { + "__id__": 394 + }, + { + "__id__": 396 + } + ], + "_prefab": { + "__id__": 398 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -1016.037, + "y": 429.8, + "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": "Sliders", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 335 + }, + "_children": [ + { + "__id__": 337 + }, + { + "__id__": 349 + } + ], + "_active": true, + "_components": [ + { + "__id__": 361 + }, + { + "__id__": 363 + } + ], + "_prefab": { + "__id__": 365 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -11.081, + "y": -49.88, + "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": "Slider_Orange", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 336 + }, + "_children": [ + { + "__id__": 338 + } + ], + "_active": true, + "_components": [ + { + "__id__": 344 + }, + { + "__id__": 346 + } + ], + "_prefab": { + "__id__": 348 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 110.142, + "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": "Image", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 337 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 339 + }, + { + "__id__": 341 + } + ], + "_prefab": { + "__id__": 343 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 30.166, + "y": 0.313, + "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": 10, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "carKvaRt5IyKeCAhu1DtZi" + }, + { + "__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__": "5e5196bf-cd75-4bf3-bc60-21644cae4532@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": "d3W22TzdlNwr0WyA3LCPM6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "09mGtTe1VKwY0edtYcpRkf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 337 + }, + "_enabled": true, + "__prefab": { + "__id__": 345 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 50, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b7tW0lR+NNrbHYXlxgYwLs" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 337 + }, + "_enabled": true, + "__prefab": { + "__id__": 347 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 165, + "b": 0, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@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": "0fFaXuAE9ClL61cU31eIxI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a5JwmIEq1IlaHKDxdIiRFJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Slider_Yellow", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 336 + }, + "_children": [ + { + "__id__": 350 + } + ], + "_active": true, + "_components": [ + { + "__id__": 356 + }, + { + "__id__": 358 + } + ], + "_prefab": { + "__id__": 360 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -56.227, + "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": "Image", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 349 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 351 + }, + { + "__id__": 353 + } + ], + "_prefab": { + "__id__": 355 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 129.923, + "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": 20, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "69XIPmAppLE5asB9ZKbGts" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 350 + }, + "_enabled": true, + "__prefab": { + "__id__": 354 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "ca98f461-57c2-4d4b-8a0a-5c376cad6e13@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": "48Tp8M3L1FCrQgaFoSVQKP" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1vp+Zj49PWrFNLleF/Ze/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 349 + }, + "_enabled": true, + "__prefab": { + "__id__": 357 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0eLGGfm/FPDIwuTe0JqWgu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 349 + }, + "_enabled": true, + "__prefab": { + "__id__": 359 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 0, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@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": "6cL3BgcsZA8KIz43XkT0HB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "84uOmFlwlDu42QF4jDrC/w", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 336 + }, + "_enabled": true, + "__prefab": { + "__id__": 362 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5fCuOzJH5Bh58bgpXYrnyi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 336 + }, + "_enabled": true, + "__prefab": { + "__id__": 364 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "826e8d0c-4d3d-4953-8c17-e0d022cdb283@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": "6cgS5ZLkxMsIGM7wnnlsya" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fcb/k2hRNHBoJZreYH8YXs", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Chest", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 335 + }, + "_children": [ + { + "__id__": 367 + } + ], + "_active": true, + "_components": [ + { + "__id__": 373 + }, + { + "__id__": 375 + } + ], + "_prefab": { + "__id__": 377 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -138.836, + "y": 8.378, + "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": "Chest_Count", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 366 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 368 + }, + { + "__id__": 370 + } + ], + "_prefab": { + "__id__": 372 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 102.951, + "y": 46.996, + "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__": 367 + }, + "_enabled": true, + "__prefab": { + "__id__": 369 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "13Mi1HT3pFRKPOEAHf56dX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 367 + }, + "_enabled": true, + "__prefab": { + "__id__": 371 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "905656e6-dc49-4d12-a3ef-c478ad0df6c9@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "47eir6IfpD4YEe3tNW+Zh4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8e7tOR2yVG97sip6mIrws2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 366 + }, + "_enabled": true, + "__prefab": { + "__id__": 374 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 203, + "height": 166 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "19HUVwZsFP0J9hDMhcTAxV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 366 + }, + "_enabled": true, + "__prefab": { + "__id__": 376 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "374e571b-c1ee-410d-bde5-3d0fde425756@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "00rmfpROJCnYIF4mHCMzmd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "370mwZmJBMepjFC2EBY8VI", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Value", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 335 + }, + "_children": [ + { + "__id__": 379 + } + ], + "_active": true, + "_components": [ + { + "__id__": 385 + } + ], + "_prefab": { + "__id__": 387 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 3.16, + "y": 1.58, + "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": "TMP SubMeshUI [CookieRun Black SDF Material]", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 378 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 380 + }, + { + "__id__": 382 + } + ], + "_prefab": { + "__id__": 384 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 101.062, + "y": -18.715, + "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__": 379 + }, + "_enabled": true, + "__prefab": { + "__id__": 381 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 178.79994201660156, + "height": 150.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e2kiVR6flCy745uTgrg+bB" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 379 + }, + "_enabled": true, + "__prefab": { + "__id__": 383 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "275 / 100\n\n", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 45, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a12AoqyV1DQp1nF/QePuuH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c1f217QjxHT5QGmyNQu7l3", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 378 + }, + "_enabled": true, + "__prefab": { + "__id__": 386 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "26x/S86oxEn6ANKxncAM87" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "79bLq8UXZLw6AjOClZBppN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Token", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 335 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 389 + }, + { + "__id__": 391 + } + ], + "_prefab": { + "__id__": 393 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 192.869, + "y": -46.164, + "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__": 388 + }, + "_enabled": true, + "__prefab": { + "__id__": 390 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 89 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bWAo7/5JK7ra9cL6VNbR5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 388 + }, + "_enabled": true, + "__prefab": { + "__id__": 392 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "2772ba5e-5c43-418c-9ee7-ae10f745f3d7@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8eDXnd+/5CJb5fKnjbJgSy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "38su606X5DCZYlxC0X6DyT", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 335 + }, + "_enabled": true, + "__prefab": { + "__id__": 395 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 450, + "height": 165 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eaJn9JlTJEc4VpumHICs0K" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 335 + }, + "_enabled": true, + "__prefab": { + "__id__": 397 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "006f723b-b45a-4c31-b4a6-f809dc5ff9bd@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": "882NHgJTFEKK0felK9+UTU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9b22pVfKRFqL9ziKiU53aB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "GoldenPass_Info", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 400 + }, + { + "__id__": 406 + }, + { + "__id__": 412 + }, + { + "__id__": 418 + }, + { + "__id__": 424 + } + ], + "_active": true, + "_components": [ + { + "__id__": 530 + }, + { + "__id__": 532 + } + ], + "_prefab": { + "__id__": 534 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -895.842, + "y": 201.284, + "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": "Fx_Shines_Light01", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 401 + }, + { + "__id__": 403 + } + ], + "_prefab": { + "__id__": 405 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 266.664, + "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__": 400 + }, + "_enabled": true, + "__prefab": { + "__id__": 402 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "78bLWlUbJNYKe9zNrGlC13" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 400 + }, + "_enabled": true, + "__prefab": { + "__id__": 404 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2v0GwopJLxLlhWu46g9Xa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3H++GX1ZDl5X/KwR3G4x7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Image_GoldenPass", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 407 + }, + { + "__id__": 409 + } + ], + "_prefab": { + "__id__": 411 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 252.732, + "y": 16.007, + "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__": 406 + }, + "_enabled": true, + "__prefab": { + "__id__": 408 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 196, + "height": 157 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a6udqX60BCcasyJg3PtOy+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 406 + }, + "_enabled": true, + "__prefab": { + "__id__": 410 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "bb4588b5-c269-4f2f-bb10-5a4acc0c299d@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d0o0hRdPVFrJhBBbvoIHxG" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1fK/BuS6NE3bvlBELjCiBs", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_GoldenPass", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 413 + }, + { + "__id__": 415 + } + ], + "_prefab": { + "__id__": 417 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 244.586, + "y": -60.093, + "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__": 412 + }, + "_enabled": true, + "__prefab": { + "__id__": 414 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 189.68792724609375, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c69VYtUL5Bo4+WMQ3RvQk1" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 412 + }, + "_enabled": true, + "__prefab": { + "__id__": 416 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 119, + "g": 94, + "b": 19, + "a": 236 + }, + "_string": "Golden Pass", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3bfnWriypJvbjA3q+5mNjC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b51negkT5LLqTbYAuoBzZ6", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Season", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 419 + }, + { + "__id__": 421 + } + ], + "_prefab": { + "__id__": 423 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -167.713, + "y": 46.959, + "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": 274.19989013671875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b0QGVPUhhLOYdbgHlYiN1A" + }, + { + "__type__": "cc.RichText", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 418 + }, + "_enabled": true, + "__prefab": { + "__id__": 422 + }, + "_lineHeight": 40, + "_string": "SEASON1 2 / 10", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_fontSize": 40, + "_fontColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_maxWidth": 0, + "_fontFamily": "Arial", + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_userDefinedFont": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_cacheMode": 0, + "_imageAtlas": null, + "_handleTouchEvent": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "afM+Y01URKv6po2i9lTOsA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "04Wm+zWzJOvL4AE1Q3MC3V", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Slider_IconType02", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [ + { + "__id__": 425 + }, + { + "__id__": 431 + }, + { + "__id__": 437 + }, + { + "__id__": 503 + }, + { + "__id__": 515 + } + ], + "_active": true, + "_components": [ + { + "__id__": 527 + } + ], + "_prefab": { + "__id__": 529 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -75.471, + "y": -33.542, + "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": "Slider_IconType02_Frame", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 424 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 426 + }, + { + "__id__": 428 + } + ], + "_prefab": { + "__id__": 430 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -20.125, + "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__": 425 + }, + "_enabled": true, + "__prefab": { + "__id__": 427 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 328.9384, + "height": 48 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0e71BOqqlHBaSUDc+X7ruJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 425 + }, + "_enabled": true, + "__prefab": { + "__id__": 429 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "bfead96c-f3b1-4940-8871-9af603814e90@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": "be6mwt+bxCop9xl95Lfy9H" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "faOJK03XlJPITP8xIvQpes", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Slider_IconType02_Fill", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 424 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 432 + }, + { + "__id__": 434 + } + ], + "_prefab": { + "__id__": 436 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -175.8118, + "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__": 431 + }, + "_enabled": true, + "__prefab": { + "__id__": 433 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 322, + "height": 43.74768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "08W9BIFpxNoqZ/sAZilIey" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 431 + }, + "_enabled": true, + "__prefab": { + "__id__": 435 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "22711d2e-fec5-4e9e-a9c0-0c44ad9f55d4@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 3, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0.2, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1bvfpwu7BAUaz9uiFQ/XGf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67MNjQrvlN26UC7sT3Lk5m", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Group_Line", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 424 + }, + "_children": [ + { + "__id__": 438 + }, + { + "__id__": 444 + }, + { + "__id__": 450 + }, + { + "__id__": 456 + }, + { + "__id__": 462 + }, + { + "__id__": 468 + }, + { + "__id__": 474 + }, + { + "__id__": 480 + }, + { + "__id__": 486 + }, + { + "__id__": 492 + } + ], + "_active": true, + "_components": [ + { + "__id__": 498 + }, + { + "__id__": 500 + } + ], + "_prefab": { + "__id__": 502 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -9.537, + "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": "Line", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 439 + }, + { + "__id__": 441 + } + ], + "_prefab": { + "__id__": 443 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -130.5, + "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__": 438 + }, + "_enabled": true, + "__prefab": { + "__id__": 440 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f92iKWZ3NMFrkk9Qy6YyqR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 438 + }, + "_enabled": true, + "__prefab": { + "__id__": 442 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2bFBxdiiVHs5aVSIavb2We" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1cJt0wMCtCg5tQQ8dwZWzE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 445 + }, + { + "__id__": 447 + } + ], + "_prefab": { + "__id__": 449 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -101.5, + "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__": 444 + }, + "_enabled": true, + "__prefab": { + "__id__": 446 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c7eD+JMQFJFJjFEDupjIh/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 444 + }, + "_enabled": true, + "__prefab": { + "__id__": 448 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53ZEVsZUNPkJmYPf8/KMSQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aeDt7TivNESpy645CPM14q", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-002", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 451 + }, + { + "__id__": 453 + } + ], + "_prefab": { + "__id__": 455 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -72.5, + "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__": 450 + }, + "_enabled": true, + "__prefab": { + "__id__": 452 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "40Ffg/MeFNPoVm8sy3+hSO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 450 + }, + "_enabled": true, + "__prefab": { + "__id__": 454 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8dDaTVUQ1LspiIZHjEJTaA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28v291ZiJMIqCvOpgq2mHc", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-003", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 457 + }, + { + "__id__": 459 + } + ], + "_prefab": { + "__id__": 461 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -43.5, + "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__": 456 + }, + "_enabled": true, + "__prefab": { + "__id__": 458 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4e3yp5gUhJxJRURJJkrV5X" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 456 + }, + "_enabled": true, + "__prefab": { + "__id__": 460 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9dy1uvRFlOCo08Jg8798vd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3dm0nZ44tDSpUxY3m8gGcQ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-004", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 463 + }, + { + "__id__": 465 + } + ], + "_prefab": { + "__id__": 467 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -14.5, + "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__": 462 + }, + "_enabled": true, + "__prefab": { + "__id__": 464 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "65rH/UKJxFO7l+sXhFvq16" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 462 + }, + "_enabled": true, + "__prefab": { + "__id__": 466 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "638hnkzB9KooiPI140dNEC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8Jc0z0CREZaXutlqzeITd", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-005", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 469 + }, + { + "__id__": 471 + } + ], + "_prefab": { + "__id__": 473 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 14.5, + "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__": 468 + }, + "_enabled": true, + "__prefab": { + "__id__": 470 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9dgb07X4VOXa9npymwSs6Z" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 468 + }, + "_enabled": true, + "__prefab": { + "__id__": 472 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0dAyEU8H1DbYmAItb47o1S" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "56SNl7Ld9JToH76zFN+d3R", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-006", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 475 + }, + { + "__id__": 477 + } + ], + "_prefab": { + "__id__": 479 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 43.5, + "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__": 474 + }, + "_enabled": true, + "__prefab": { + "__id__": 476 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5e46ho9IxIvqlPH9RvZHzl" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 474 + }, + "_enabled": true, + "__prefab": { + "__id__": 478 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2fMYzAJjhA25X05JAXUDgh" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "81O/RGo81FDZoBUsu84Xra", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-007", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 481 + }, + { + "__id__": 483 + } + ], + "_prefab": { + "__id__": 485 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 72.5, + "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__": 480 + }, + "_enabled": true, + "__prefab": { + "__id__": 482 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c2wjURLE1O/IvPsIUVslYc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 480 + }, + "_enabled": true, + "__prefab": { + "__id__": 484 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2YBcOtrVKCodV8txp2dE/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5g45XCIRNOZ8S7hAi+EE2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-008", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 487 + }, + { + "__id__": 489 + } + ], + "_prefab": { + "__id__": 491 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 101.5, + "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__": 486 + }, + "_enabled": true, + "__prefab": { + "__id__": 488 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "58jneVEf5AeqpsVSagv75U" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 486 + }, + "_enabled": true, + "__prefab": { + "__id__": 490 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e3pQhr8M5PPYwTkN/Muo7b" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f1sgHqv/1BNLVPwn8OvY9h", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Line-009", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 437 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 493 + }, + { + "__id__": 495 + } + ], + "_prefab": { + "__id__": 497 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 130.5, + "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__": 492 + }, + "_enabled": true, + "__prefab": { + "__id__": 494 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3yIPIX6JHFYPl4zuv6II4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 492 + }, + "_enabled": true, + "__prefab": { + "__id__": 496 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27bf4723-f5e3-4137-a48c-e2f66f11c233@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "derptIUTpC+pU3Gv+aXDd4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f6jGYt9XxH4IgzdXzuh9p2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 437 + }, + "_enabled": true, + "__prefab": { + "__id__": 499 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d9BCGtOaVOZraURwKSu7mL" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 437 + }, + "_enabled": true, + "__prefab": { + "__id__": 501 + }, + "_resizeMode": 0, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 26, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "47um2vb7hEYqNllkHXNkIb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18/ks9KOpHxrscLOQofaYZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Slider_IconType02_Icon1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 424 + }, + "_children": [ + { + "__id__": 504 + } + ], + "_active": true, + "_components": [ + { + "__id__": 510 + }, + { + "__id__": 512 + } + ], + "_prefab": { + "__id__": 514 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -191.941, + "y": -1.941000000000031, + "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": "Text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 503 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 505 + }, + { + "__id__": 507 + } + ], + "_prefab": { + "__id__": 509 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.647, + "y": 1.942, + "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__": 504 + }, + "_enabled": true, + "__prefab": { + "__id__": 506 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24.29998779296875, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "51DOaA58VDeIK9iPx8xwke" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 504 + }, + "_enabled": true, + "__prefab": { + "__id__": 508 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "1", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 50, + "_fontSize": 50, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": true, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 0, + "y": -6 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "755CL1MexAnLnYHBioeHRN" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7ei/Ct/r1MEJsGLmqaca57", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 503 + }, + "_enabled": true, + "__prefab": { + "__id__": 511 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 71, + "height": 75 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "faI+9xKzJBbZTmQszl1BZJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 503 + }, + "_enabled": true, + "__prefab": { + "__id__": 513 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e9ac0c63-3b58-4f30-99d7-37b0884824f0@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "310wfPFc9L05dycidFRJo7" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d4vCkCOfpJZbNgRIv7eVA5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Slider_IconType02_Icon2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 424 + }, + "_children": [ + { + "__id__": 516 + } + ], + "_active": true, + "_components": [ + { + "__id__": 522 + }, + { + "__id__": 524 + } + ], + "_prefab": { + "__id__": 526 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 152.845, + "y": 3.017, + "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": "Fx_Sparkle_Star01", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 517 + }, + { + "__id__": 519 + } + ], + "_prefab": { + "__id__": 521 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -2.011, + "y": -8.044, + "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__": 516 + }, + "_enabled": true, + "__prefab": { + "__id__": 518 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64R8bQ7LRAmIE45hGjiohM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 516 + }, + "_enabled": true, + "__prefab": { + "__id__": 520 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e801RoFWlJALVP2NrLqouQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "349/Dy65FOpbb8zP0XXt2g", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 515 + }, + "_enabled": true, + "__prefab": { + "__id__": 523 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 97, + "height": 93 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0eWtTfl5FGvbaK4SDVjOfM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 515 + }, + "_enabled": true, + "__prefab": { + "__id__": 525 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "052eaa64-38d6-44be-bdb4-e6a64616dfd0@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3bzl1YKDdCRIsnWPd+oY0M" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8dnZptrJH4ZaJ+IIlfM63", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 424 + }, + "_enabled": true, + "__prefab": { + "__id__": 528 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 467.04, + "height": 98.839 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2ajh8scgxLfbpG6Z9vn21k" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7y9QWsFhKBaPHU1gwLCxj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 399 + }, + "_enabled": true, + "__prefab": { + "__id__": 531 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 674.1598, + "height": 207 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d5n53D7SBKFbBGV+z+LX2N" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 399 + }, + "_enabled": true, + "__prefab": { + "__id__": 533 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "4391e832-6409-4294-9435-5d5ac8ac5d2d@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": "68p7VaZWJBvZFVSdzS0xYE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eaO8NwWeFK15+REezWx48B", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SideSubMenu", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 536 + }, + { + "__id__": 554 + }, + { + "__id__": 584 + }, + { + "__id__": 614 + }, + { + "__id__": 632 + }, + { + "__id__": 650 + } + ], + "_active": true, + "_components": [ + { + "__id__": 668 + } + ], + "_prefab": { + "__id__": 670 + }, + "_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": "Button_Ranking", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 535 + }, + "_children": [ + { + "__id__": 537 + }, + { + "__id__": 543 + } + ], + "_active": true, + "_components": [ + { + "__id__": 549 + }, + { + "__id__": 551 + } + ], + "_prefab": { + "__id__": 553 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 990.354, + "y": 187.834, + "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": "Icon_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 536 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 538 + }, + { + "__id__": 540 + } + ], + "_prefab": { + "__id__": 542 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1.957, + "y": 10.44, + "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__": 537 + }, + "_enabled": true, + "__prefab": { + "__id__": 539 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 89 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "81T1litD1DFb5qtYfzRH9G" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 537 + }, + "_enabled": true, + "__prefab": { + "__id__": 541 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "5a8561d3-b154-4094-ab38-fb2d1a3245ee@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d4oZ+C0ExN3a1EcUv4o1fY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22OFyFY3RJfLiM1SqReSW+", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 536 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 544 + }, + { + "__id__": 546 + } + ], + "_prefab": { + "__id__": 548 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -53.514, + "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__": 543 + }, + "_enabled": true, + "__prefab": { + "__id__": 545 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 88.22496032714844, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c8FYpMYMpJd77ZOx47OQye" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 543 + }, + "_enabled": true, + "__prefab": { + "__id__": 547 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Ranking", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 25, + "_fontSize": 25, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "3aZi3fQ1VIl6E7BIV2UK00" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0awku39TtFJJ+ZCzqBq6Eg", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 536 + }, + "_enabled": true, + "__prefab": { + "__id__": 550 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "05i0N7O0BLjKEch163xWgw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 536 + }, + "_enabled": true, + "__prefab": { + "__id__": 552 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd4128db-d903-4bca-961d-2ebdc510bd1d@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": "a66NRmNpFCkKzBOTiQIvBJ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "04MlDZr1xOQ4FJ/04GSf4S", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Rewards", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 535 + }, + "_children": [ + { + "__id__": 555 + }, + { + "__id__": 561 + }, + { + "__id__": 567 + } + ], + "_active": true, + "_components": [ + { + "__id__": 579 + }, + { + "__id__": 581 + } + ], + "_prefab": { + "__id__": 583 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1164.458, + "y": 186.906, + "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": "Icon_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 554 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 556 + }, + { + "__id__": 558 + } + ], + "_prefab": { + "__id__": 560 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 12.062, + "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__": 555 + }, + "_enabled": true, + "__prefab": { + "__id__": 557 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 93, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6bfAYgxm5DFptTSjaOZllS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 555 + }, + "_enabled": true, + "__prefab": { + "__id__": 559 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b294c04f-ab71-462c-a896-f19a5e15def3@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "afM5RtQlRDVLnwECiwBTLd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02Md1O1FZCka7EeFUdnJqG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 554 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 562 + }, + { + "__id__": 564 + } + ], + "_prefab": { + "__id__": 566 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -53.514, + "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__": 561 + }, + "_enabled": true, + "__prefab": { + "__id__": 563 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 93.89996337890625, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "75snGEZyNCV7fiW+RTiO0V" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 561 + }, + "_enabled": true, + "__prefab": { + "__id__": 565 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Rewards", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 25, + "_fontSize": 25, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "6fvpOHJ0NLNragMJRG5J2E" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12V1Ld93JKN6vCH+OKjBYN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Alram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 554 + }, + "_children": [ + { + "__id__": 568 + } + ], + "_active": true, + "_components": [ + { + "__id__": 574 + }, + { + "__id__": 576 + } + ], + "_prefab": { + "__id__": 578 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 59.456, + "y": 57.761, + "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": "Text_Alram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 567 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 569 + }, + { + "__id__": 571 + } + ], + "_prefab": { + "__id__": 573 + }, + "_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__": 568 + }, + "_enabled": true, + "__prefab": { + "__id__": 570 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 12.17999267578125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "605/jo43lDA4cHX2ZRDX6c" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 568 + }, + "_enabled": true, + "__prefab": { + "__id__": 572 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "1", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "9fMPNNuVtO/LmNYnp3rqFf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9dQrOvKrJEhKsRbXzUYL9t", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 567 + }, + "_enabled": true, + "__prefab": { + "__id__": 575 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 79 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ceb1iEJcBPZ5RbI3t0ldhW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 567 + }, + "_enabled": true, + "__prefab": { + "__id__": 577 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8fe273-7d4b-48d1-88be-e9a262e939d6@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7aEoVG7cpIqoXozbwwHQoI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12vtOP5DlOcace5J7MUPbP", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 554 + }, + "_enabled": true, + "__prefab": { + "__id__": 580 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfelqMsalHDo2tWLjYSdfz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 554 + }, + "_enabled": true, + "__prefab": { + "__id__": 582 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd4128db-d903-4bca-961d-2ebdc510bd1d@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": "b9+c/Mz+VJppglbQOLL7k+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98V3SzDeFDeaJFGyDFwqUS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Quests", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 535 + }, + "_children": [ + { + "__id__": 585 + }, + { + "__id__": 591 + }, + { + "__id__": 597 + } + ], + "_active": true, + "_components": [ + { + "__id__": 609 + }, + { + "__id__": 611 + } + ], + "_prefab": { + "__id__": 613 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 990.981, + "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": "Icon_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 584 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 586 + }, + { + "__id__": 588 + } + ], + "_prefab": { + "__id__": 590 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 16.291, + "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__": 585 + }, + "_enabled": true, + "__prefab": { + "__id__": 587 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102, + "height": 107 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d3D28PkftC/JSOy/0fbIrD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 585 + }, + "_enabled": true, + "__prefab": { + "__id__": 589 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "09d73bc5-6604-4bbd-8cc3-ae778f2457a4@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bc4gl10U1JlbWdxhiFVu1l" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ee/pdVFWJEfbR0T4C6uPZv", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 584 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 592 + }, + { + "__id__": 594 + } + ], + "_prefab": { + "__id__": 596 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -52.288, + "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__": 591 + }, + "_enabled": true, + "__prefab": { + "__id__": 593 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 75.0999755859375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b5NY4FkPJLR4y0ij762t9/" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 591 + }, + "_enabled": true, + "__prefab": { + "__id__": 595 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Quests", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 25, + "_fontSize": 25, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "d0aeD/zERLeY1TrF7geojR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8bKL7C47hEzoPPqeK8NyPu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Alram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 584 + }, + "_children": [ + { + "__id__": 598 + } + ], + "_active": true, + "_components": [ + { + "__id__": 604 + }, + { + "__id__": 606 + } + ], + "_prefab": { + "__id__": 608 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 62.724, + "y": 59.119, + "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": "Text_Alram", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 597 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 599 + }, + { + "__id__": 601 + } + ], + "_prefab": { + "__id__": 603 + }, + "_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__": 598 + }, + "_enabled": true, + "__prefab": { + "__id__": 600 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 15.75, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "29vOg0qzROKZqj5Sy0hjP7" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 598 + }, + "_enabled": true, + "__prefab": { + "__id__": 602 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "2", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "baraQo2RpMv6FOlnplnMPb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "91IrbzzVRFg73l0kXclPF2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 597 + }, + "_enabled": true, + "__prefab": { + "__id__": 605 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 79 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dbtwSJqcFI3JVmFUe8+7Vh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 597 + }, + "_enabled": true, + "__prefab": { + "__id__": 607 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "479226fb-c608-4893-a76a-a0ebe6bcb595@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": "caXo/StURIybr+t50Gw1G2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25ERNLwo5NLINPwlYB0EBo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 584 + }, + "_enabled": true, + "__prefab": { + "__id__": 610 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9bmpoBvd5FJIguykaG+xqI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 584 + }, + "_enabled": true, + "__prefab": { + "__id__": 612 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd4128db-d903-4bca-961d-2ebdc510bd1d@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": "82rDc7rh5FCIghlTWZxFlL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ecWl55HG9AzYxciJf4ayOg", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Friends", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 535 + }, + "_children": [ + { + "__id__": 615 + }, + { + "__id__": 621 + } + ], + "_active": true, + "_components": [ + { + "__id__": 627 + }, + { + "__id__": 629 + } + ], + "_prefab": { + "__id__": 631 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1164.143, + "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": "Icon_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 614 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 616 + }, + { + "__id__": 618 + } + ], + "_prefab": { + "__id__": 620 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 2.884, + "y": 14.419, + "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__": 615 + }, + "_enabled": true, + "__prefab": { + "__id__": 617 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 114, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "90heiXK4tLkLszVZRNoYSW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 615 + }, + "_enabled": true, + "__prefab": { + "__id__": 619 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "08ef30bc-2644-4112-9681-accf0a154434@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a087J64y9OlraKhQ/Lawn3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e6P2fUGvFM34PTbQSNgct1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 614 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 622 + }, + { + "__id__": 624 + } + ], + "_prefab": { + "__id__": 626 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -53.352, + "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__": 621 + }, + "_enabled": true, + "__prefab": { + "__id__": 623 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79.19996643066406, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8trFfRo9Ebq6VbhVeWkH7" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 621 + }, + "_enabled": true, + "__prefab": { + "__id__": 625 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Friends", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 25, + "_fontSize": 25, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "cbcsw3L9pMmZceSYgYqvQ4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45itVICAdEhIpMuvk8CoMD", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 614 + }, + "_enabled": true, + "__prefab": { + "__id__": 628 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "47is1QX/BH14zhkkmpOg3y" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 614 + }, + "_enabled": true, + "__prefab": { + "__id__": 630 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd4128db-d903-4bca-961d-2ebdc510bd1d@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": "bf6BuT4ItPibaC295p3tQ5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9cNqnM5FZINrAwn1Ffittv", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Inbox", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 535 + }, + "_children": [ + { + "__id__": 633 + }, + { + "__id__": 639 + } + ], + "_active": true, + "_components": [ + { + "__id__": 645 + }, + { + "__id__": 647 + } + ], + "_prefab": { + "__id__": 649 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 991.495, + "y": -186.181, + "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": "Icon_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 632 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 634 + }, + { + "__id__": 636 + } + ], + "_prefab": { + "__id__": 638 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 15.14, + "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__": 633 + }, + "_enabled": true, + "__prefab": { + "__id__": 635 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 97, + "height": 103 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9eIEvUPddNP5fxBxLkr8So" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 633 + }, + "_enabled": true, + "__prefab": { + "__id__": 637 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b8e9226e-35aa-416e-b37b-82ff6ec95271@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "07A14INrxHEaZpihs1KNaU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "deFMbz5cRDrraMwoNPnf1L", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 632 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 640 + }, + { + "__id__": 642 + } + ], + "_prefab": { + "__id__": 644 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 2.884, + "y": -53.351, + "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__": 639 + }, + "_enabled": true, + "__prefab": { + "__id__": 641 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64.24996948242188, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c59iywre9IbqwerEKLz3RY" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 639 + }, + "_enabled": true, + "__prefab": { + "__id__": 643 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Inbox", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 25, + "_fontSize": 25, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "4ac4QiuS1JXarUCWueWPPc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "93hgP5p4pD0LiG8EkK90Mg", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 632 + }, + "_enabled": true, + "__prefab": { + "__id__": 646 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "10VSwnNLJDm74hNQ5QLoUv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 632 + }, + "_enabled": true, + "__prefab": { + "__id__": 648 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd4128db-d903-4bca-961d-2ebdc510bd1d@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": "40Uab0XVZOxKgWMIYZsuBW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1bXAdlfKxHN4nF54GIPyG+", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button_Notice", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 535 + }, + "_children": [ + { + "__id__": 651 + }, + { + "__id__": 657 + } + ], + "_active": true, + "_components": [ + { + "__id__": 663 + }, + { + "__id__": 665 + } + ], + "_prefab": { + "__id__": 667 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1165.6, + "y": -186.63, + "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": "Icon_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 650 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 652 + }, + { + "__id__": 654 + } + ], + "_prefab": { + "__id__": 656 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -2.884, + "y": 12.977, + "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__": 651 + }, + "_enabled": true, + "__prefab": { + "__id__": 653 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102, + "height": 111 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bVKo7s+1DApfD4s8Ka3hD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 651 + }, + "_enabled": true, + "__prefab": { + "__id__": 655 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "ebea5e5b-2542-46b0-9e49-ecdd696f8fff@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bbqhDhTs9JyI+SXUwEbX5B" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e9fECDK69MDoYw4E5Y3KyH", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Text_Sub", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 650 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 658 + }, + { + "__id__": 660 + } + ], + "_prefab": { + "__id__": 662 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.721, + "y": -52.63, + "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__": 657 + }, + "_enabled": true, + "__prefab": { + "__id__": 659 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 67.79997253417969, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6e+qUo1GxIvZmq94qJPMYV" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 657 + }, + "_enabled": true, + "__prefab": { + "__id__": 661 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Notice", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 25, + "_fontSize": 25, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_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": "dbDxHibcRB/qUXnL+Ei0uP" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bcBJP9KqBJnZ6TrbSbfQFw", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 650 + }, + "_enabled": true, + "__prefab": { + "__id__": 664 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 153, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c0fsIUEGdMeq+vNVON3+L8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 650 + }, + "_enabled": true, + "__prefab": { + "__id__": 666 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd4128db-d903-4bca-961d-2ebdc510bd1d@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": "c7WoSCByhGHICcSr++ePPS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d0sH4k65BMELgBh+tTRInJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 535 + }, + "_enabled": true, + "__prefab": { + "__id__": 669 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7dHdCtVw1D66db4xUu3yUD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5fpcUJ48FEpImPPbSU3itF", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 672 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 2560, + "height": 1440 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "04vCM/0m5LiIAjPGhYoYrp" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 674 + }, + "_alignFlags": 45, + "_target": null, + "_left": 1.0530000000000168, + "_right": -1.0530000000000168, + "_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": "9d+uabNhpGTb2UhXS5SJC2" + }, + { + "__type__": "66960EGAwNC45hmd1CpIoUb", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 676 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "faWGnN/01CnpvG7cooAMSf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c46/YsCPVOJYA4mWEpNYRx", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": [ + { + "__id__": 33 + } + ] + } +] \ No newline at end of file diff --git a/assets/games/prefabs/uis/MainUI-001.prefab.meta b/assets/games/prefabs/uis/MainUI-001.prefab.meta new file mode 100644 index 0000000..f7aa2c5 --- /dev/null +++ b/assets/games/prefabs/uis/MainUI-001.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "682cc812-4182-4fe0-8b91-43c4d9b6add6", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "MainUI-001" + } +} diff --git a/assets/games/prefabs/uis/MainUI.prefab b/assets/games/prefabs/uis/MainUI.prefab index a9e6e5e..62350ea 100644 --- a/assets/games/prefabs/uis/MainUI.prefab +++ b/assets/games/prefabs/uis/MainUI.prefab @@ -22,39 +22,27 @@ "__id__": 2 }, { - "__id__": 10 - }, - { - "__id__": 16 - }, - { - "__id__": 32 - }, - { - "__id__": 95 - }, - { - "__id__": 255 + "__id__": 8 } ], "_active": true, "_components": [ { - "__id__": 441 + "__id__": 62 }, { - "__id__": 443 + "__id__": 64 }, { - "__id__": 445 + "__id__": 66 } ], "_prefab": { - "__id__": 447 + "__id__": 68 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, + "x": 1.0529999999999973, "y": 0, "z": 0 }, @@ -83,7 +71,7 @@ }, { "__type__": "cc.Node", - "_name": "Background", + "_name": "bigMap", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -97,13 +85,10 @@ }, { "__id__": 5 - }, - { - "__id__": 7 } ], "_prefab": { - "__id__": 9 + "__id__": 7 }, "_lpos": { "__type__": "cc.Vec3", @@ -148,8 +133,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 1440 + "width": 640, + "height": 1360 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -160,7 +145,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "59ApMrYSdFZIux53LlO5eV" + "fileId": "15ksJIsphKHbM6SdC9UwTH" }, { "__type__": "cc.Sprite", @@ -185,12 +170,12 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "d307a7c5-d91b-4c85-8c48-4965cfc31276@f9941", + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@fbfdf", "__expectedType__": "cc.SpriteFrame" }, - "_type": 1, + "_type": 0, "_fillType": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -205,43 +190,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "d1KS1iFNZJcY4sLrc6iyIk" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_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": 4, - "_originalHeight": 585, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2cb3xNiW9A66yJVP4JyGKz" + "fileId": "efYiz2CXJP9KrCCOX8jPqi" }, { "__type__": "cc.PrefabInfo", @@ -251,36 +200,93 @@ "asset": { "__id__": 0 }, - "fileId": "e3PBF4Du9LQL7y+Thn9vfB", + "fileId": "1eCdPVz01JeJ6jpbahJV9W", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "Floor", + "_name": "Top", "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 1 }, - "_children": [], + "_children": [ + { + "__id__": 9 + }, + { + "__id__": 15 + } + ], "_active": true, "_components": [ { - "__id__": 11 + "__id__": 57 }, { - "__id__": 13 + "__id__": 59 } ], "_prefab": { - "__id__": 15 + "__id__": 61 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, + "y": 519, + "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": "logo", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 14 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -69.265, "z": 0 }, "_lrot": { @@ -312,16 +318,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 9 }, "_enabled": true, "__prefab": { - "__id__": 12 + "__id__": 11 }, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 1440 + "width": 256, + "height": 131 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -332,7 +338,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "d8APeRvqtCwqSt7z3oeT4c" + "fileId": "525lF0aqJF0pMMM5klYx6Q" }, { "__type__": "cc.Sprite", @@ -340,11 +346,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 9 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 13 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -357,7 +363,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "9ba6b93e-cf70-480a-accb-2e15866a8237@f9941", + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9e5d2", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -377,7 +383,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "43Xhin1YpCrbzWx02kdYS2" + "fileId": "48UBSg6b5OWYtjCOi//VxX" }, { "__type__": "cc.PrefabInfo", @@ -387,40 +393,41 @@ "asset": { "__id__": 0 }, - "fileId": "7acQxsHSxLQLWDneDNZAhf", - "instance": null, - "targetOverrides": null, + "fileId": "a0TVH7Q+lCrYPKZCIshZ5B", "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "Character", + "_name": "Container", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 8 }, "_children": [ { - "__id__": 17 + "__id__": 16 }, { - "__id__": 23 + "__id__": 34 } ], "_active": true, "_components": [ { - "__id__": 29 + "__id__": 52 + }, + { + "__id__": 54 } ], "_prefab": { - "__id__": 31 + "__id__": 56 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 0, + "x": -230, + "y": -32.146, "z": 0 }, "_lrot": { @@ -448,7 +455,64 @@ }, { "__type__": "cc.Node", - "_name": "Shadow", + "_name": "TopLeftButton", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 15 + }, + "_children": [ + { + "__id__": 17 + }, + { + "__id__": 23 + } + ], + "_active": true, + "_components": [ + { + "__id__": 29 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 33 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -23, + "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": "coin", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -469,8 +533,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 13, - "y": -135, + "x": -35.177, + "y": 0, "z": 0 }, "_lrot": { @@ -510,8 +574,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 816, - "height": 92 + "width": 48.125, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -522,7 +586,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "ddcHXmE61FCJBdNO7JihpZ" + "fileId": "7eYYxuqGJFgZ4yN0n/VM0a" }, { "__type__": "cc.Sprite", @@ -547,12 +611,12 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "8a34180b-1be9-4293-894d-1bd2ed219054@f9941", + "__uuid__": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@947aa", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -567,7 +631,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "64XtLzbiNG75Pq/eUiIrG4" + "fileId": "9c9382v5dBoYtmqAROQSs+" }, { "__type__": "cc.PrefabInfo", @@ -577,14 +641,14 @@ "asset": { "__id__": 0 }, - "fileId": "b1kyYZ7O9BgK8463EO+XUy", + "fileId": "a2oWtHjIZG/I2melEmzmEA", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "Body", + "_name": "Label", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -605,8 +669,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 22.6, - "y": 141, + "x": 24.065, + "y": 0, "z": 0 }, "_lrot": { @@ -646,8 +710,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 523, - "height": 558 + "width": 16.6845703125, + "height": 50.4 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -658,10 +722,10 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "43GAy2pxJFjKbsM+ncx56u" + "fileId": "a3HiycZFROo74+QqUTxdzY" }, { - "__type__": "cc.Sprite", + "__type__": "cc.Label", "_name": "", "_objFlags": 0, "__editorExtras__": {}, @@ -682,28 +746,51 @@ "b": 255, "a": 255 }, - "_spriteFrame": { - "__uuid__": "6b21b807-3fc0-4a26-a84f-97ce4387641f@f9941", - "__expectedType__": "cc.SpriteFrame" + "_string": "0", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { "__type__": "cc.Vec2", - "x": 0, - "y": 0 + "x": 2, + "y": 2 }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, + "_shadowBlur": 2, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "7cXFISoi1Fj4xRHc1e8C4k" + "fileId": "e7x7Mf01dF55WHsiAHG2c+" }, { "__type__": "cc.PrefabInfo", @@ -713,7 +800,7 @@ "asset": { "__id__": 0 }, - "fileId": "eeEbnNrkVJWKd6rPDg927N", + "fileId": "acnr5VIAJBNpSULHeyGoL4", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -732,8 +819,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 100, - "height": 100 + "width": 160, + "height": 46 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -744,277 +831,20 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "39Rb7BQo5HbIK46XSEXMge" + "fileId": "59fnKLlH1OnKUJPHybKifL" }, { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "0axNtpnslOTrEOZNe4UVCR", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "TopRight", + "__type__": "cc.Sprite", + "_name": "", "_objFlags": 0, "__editorExtras__": {}, - "_parent": { - "__id__": 1 + "node": { + "__id__": 16 }, - "_children": [ - { - "__id__": 33 - }, - { - "__id__": 76 - } - ], - "_active": true, - "_components": [ - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 1230, - "y": 670, - "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", - "_objFlags": 0, - "_parent": { + "_enabled": true, + "__prefab": { "__id__": 32 }, - "_prefab": { - "__id__": 34 - }, - "__editorExtras__": {} - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 33 - }, - "asset": { - "__uuid__": "60f72a13-68d6-4351-97aa-e8318e375dda", - "__expectedType__": "cc.Prefab" - }, - "fileId": "bdGzZ+kkFId65A9V5KZ7Oq", - "instance": { - "__id__": 35 - }, - "targetOverrides": [ - { - "__id__": 43 - }, - { - "__id__": 54 - }, - { - "__id__": 65 - } - ] - }, - { - "__type__": "cc.PrefabInstance", - "fileId": "beaJsqgdhBVYKDfEVQ/SVV", - "prefabRootNode": { - "__id__": 1 - }, - "mountedChildren": [], - "mountedComponents": [], - "propertyOverrides": [ - { - "__id__": 36 - }, - { - "__id__": 38 - }, - { - "__id__": 39 - }, - { - "__id__": 40 - }, - { - "__id__": 41 - } - ], - "removedComponents": [] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 37 - }, - "propertyPath": [ - "_name" - ], - "value": "CurrencyContainer" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "bdGzZ+kkFId65A9V5KZ7Oq" - ] - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 37 - }, - "propertyPath": [ - "_lpos" - ], - "value": { - "__type__": "cc.Vec3", - "x": -170.92, - "y": -40, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 37 - }, - "propertyPath": [ - "_lrot" - ], - "value": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 37 - }, - "propertyPath": [ - "_euler" - ], - "value": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "__type__": "CCPropertyOverrideInfo", - "targetInfo": { - "__id__": 42 - }, - "propertyPath": [ - "_right" - ], - "value": 220.92 - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "37brNti6xEnIJ9voTEa0nD" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 44 - }, - "sourceInfo": null, - "propertyPath": [ - "label" - ], - "target": { - "__id__": 45 - }, - "targetInfo": { - "__id__": 53 - } - }, - { - "__type__": "8840cLY2CJILLaPKojNnI5y", - "_name": "", - "_objFlags": 0, - "__editorExtras__": { - "mountedRoot": { - "__id__": 45 - } - }, - "node": { - "__id__": 45 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "type": "gem", - "label": { - "__id__": 47 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "__editorExtras__": {} - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8eN4j7ilVCvKNo9Eu5eUiL" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 48 - }, - "_enabled": true, - "__prefab": { - "__id__": 52 - }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, @@ -1025,67 +855,65 @@ "b": 255, "a": 255 }, - "_string": "20", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" + "_spriteFrame": { + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@c051b", + "__expectedType__": "cc.SpriteFrame" }, - "_isSystemFontUsed": false, - "_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": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { "__type__": "cc.Vec2", - "x": 2, - "y": 2 + "x": 0, + "y": 0 }, - "_shadowBlur": 2, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, "_id": "" }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7aoWd6EtBBQbzA0pFofbZc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b4e5Ad4wBPfa+ubXbL+0v3", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", - "_name": "ValueLabel", + "_name": "TopLeftButton", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 45 + "__id__": 15 }, - "_children": [], + "_children": [ + { + "__id__": 35 + }, + { + "__id__": 41 + } + ], "_active": true, "_components": [ { - "__id__": 49 + "__id__": 47 }, { - "__id__": 47 + "__id__": 49 } ], "_prefab": { @@ -1093,7 +921,57 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 19.5, + "x": 0, + "y": -79, + "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": "coin", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 36 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 40 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -35.177, "y": 0, "z": 0 }, @@ -1126,626 +1004,285 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 37 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 52, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9biKfMdeNHk4zVfZAIDvY+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 39 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9980d", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0ePIeGh+dG/7xrQaw8ckq/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "faeSYzveFC76Dds9OsdcNk", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 44 + } + ], + "_prefab": { + "__id__": 46 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 24.065, + "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__": 41 + }, + "_enabled": true, + "__prefab": { + "__id__": 43 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.6845703125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "15clo6oHtF5LWjEBXSIY1c" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 41 + }, + "_enabled": true, + "__prefab": { + "__id__": 45 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "0", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5cz2uNF99N2rp29OFsVZLE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98OVPtU8NOa4WVx9X/2OoK", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 34 + }, + "_enabled": true, + "__prefab": { "__id__": 48 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3d0peGudJNMasM5JAzfcKT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 34 + }, "_enabled": true, "__prefab": { "__id__": 50 }, - "_contentSize": { - "__type__": "cc.Size", - "width": 46.55999755859375, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "09wKAKnbBB+5lZqBGPJIvn" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1djLQFnGBH/bp9kcIVVJtl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "44zvc167VCRKo7OrwxzXs0" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "44zvc167VCRKo7OrwxzXs0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 55 - }, - "sourceInfo": null, - "propertyPath": [ - "label" - ], - "target": { - "__id__": 56 - }, - "targetInfo": { - "__id__": 64 - } - }, - { - "__type__": "8840cLY2CJILLaPKojNnI5y", - "_name": "", - "_objFlags": 0, - "__editorExtras__": { - "mountedRoot": { - "__id__": 56 - } - }, - "node": { - "__id__": 56 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "type": "gold", - "label": { - "__id__": 58 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "__editorExtras__": {} - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8eN4j7ilVCvKNo9Eu5eUiL" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 59 - }, - "_enabled": true, - "__prefab": { - "__id__": 63 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "20", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_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.Node", - "_name": "ValueLabel", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 56 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 60 - }, - { - "__id__": 58 - } - ], - "_prefab": { - "__id__": 62 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 16.5, - "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__": 59 - }, - "_enabled": true, - "__prefab": { - "__id__": 61 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 46.55999755859375, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "09wKAKnbBB+5lZqBGPJIvn" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1djLQFnGBH/bp9kcIVVJtl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "44zvc167VCRKo7OrwxzXs0" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "44zvc167VCRKo7OrwxzXs0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 66 - }, - "sourceInfo": null, - "propertyPath": [ - "label" - ], - "target": { - "__id__": 67 - }, - "targetInfo": { - "__id__": 75 - } - }, - { - "__type__": "8840cLY2CJILLaPKojNnI5y", - "_name": "", - "_objFlags": 0, - "__editorExtras__": { - "mountedRoot": { - "__id__": 67 - } - }, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 68 - }, - "type": "energy", - "label": { - "__id__": 69 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "__editorExtras__": {} - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8eN4j7ilVCvKNo9Eu5eUiL" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 70 - }, - "_enabled": true, - "__prefab": { - "__id__": 74 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "20", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_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.Node", - "_name": "ValueLabel", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 67 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 71 - }, - { - "__id__": 69 - } - ], - "_prefab": { - "__id__": 73 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 20.5, - "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__": 70 - }, - "_enabled": true, - "__prefab": { - "__id__": 72 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 46.55999755859375, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "09wKAKnbBB+5lZqBGPJIvn" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1djLQFnGBH/bp9kcIVVJtl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "44zvc167VCRKo7OrwxzXs0" - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "44zvc167VCRKo7OrwxzXs0" - ] - }, - { - "__type__": "cc.Node", - "_name": "Button_Settings", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 32 - }, - "_children": [ - { - "__id__": 77 - } - ], - "_active": true, - "_components": [ - { - "__id__": 83 - }, - { - "__id__": 85 - }, - { - "__id__": 87 - } - ], - "_prefab": { - "__id__": 89 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 50, - "y": -33, - "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": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 76 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 78 - }, - { - "__id__": 80 - } - ], - "_prefab": { - "__id__": 82 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -58.9, - "y": 7.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.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 77 - }, - "_enabled": true, - "__prefab": { - "__id__": 79 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 70, - "height": 76 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "878FeEnmJHmKN2NL74IZsq" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 77 - }, - "_enabled": true, - "__prefab": { - "__id__": 81 - }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, @@ -1757,7 +1294,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "f5e86e11-cf87-4122-a8a9-cf54dfef5c2d@f9941", + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@c051b", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -1777,7 +1314,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "63ibmIZ+NFCpOVXpRxBimZ" + "fileId": "0b0+u4JJdKgKb6Qy+cWHvu" }, { "__type__": "cc.PrefabInfo", @@ -1787,7 +1324,7 @@ "asset": { "__id__": 0 }, - "fileId": "4c+OhFhTtDnp2tPNBUDneY", + "fileId": "ebfCEQX7lFtar8SI/Ik8Y5", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -1798,3956 +1335,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 76 + "__id__": 15 }, "_enabled": true, "__prefab": { - "__id__": 84 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 145, - "height": 132 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 1, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9c9GpbrtpBD4dW6MelYmUh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 76 - }, - "_enabled": true, - "__prefab": { - "__id__": 86 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "cb5a362d-fc0f-4441-ae22-1d0f4ceb7534@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": "5dSnCGI6ZF+JQUB8+39coy" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 76 - }, - "_enabled": true, - "__prefab": { - "__id__": 88 - }, - "clickEvents": [], - "_interactable": true, - "_transition": 3, - "_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": 0.9, - "_target": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "69/p5UcrRHBJvynXopCrvo" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fbZHzWxmtPWKjZbZqlEAb6", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 + "__id__": 53 }, "_contentSize": { "__type__": "cc.Size", "width": 100, - "height": 100 + "height": 102 }, "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "3096nJ5D1IQKvp6DT9me68" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 93 - }, - "_alignFlags": 33, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfUJP/ZpJIjqyNlpy0azpf" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5bR8GnNDZDb5JkVU+gGaSS", - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Bottom", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 96 - }, - { - "__id__": 118 - }, - { - "__id__": 140 - } - ], - "_active": true, - "_components": [ - { - "__id__": 248 - }, - { - "__id__": 250 - }, - { - "__id__": 252 - } - ], - "_prefab": { - "__id__": 254 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -673, - "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": "Button_Stage", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [ - { - "__id__": 97 - }, - { - "__id__": 103 - } - ], - "_active": true, - "_components": [ - { - "__id__": 109 - }, - { - "__id__": 111 - }, - { - "__id__": 113 - }, - { - "__id__": 115 - } - ], - "_prefab": { - "__id__": 117 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 536, - "y": 104, - "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": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 98 - }, - { - "__id__": 100 - } - ], - "_prefab": { - "__id__": 102 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -108.8, - "y": 17, - "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__": 97 - }, - "_enabled": true, - "__prefab": { - "__id__": 99 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 146, - "height": 135 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "92YWJfF5xBXZL7KNVXfskj" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 97 - }, - "_enabled": true, - "__prefab": { - "__id__": 101 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6ee6b626-392d-420f-abf9-9bcb931aee25@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "67j08VmWVDRqPpJwm7TzfN" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "61s1hmTrJG5bBf0kXxGo5h", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 104 - }, - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 85.1, - "y": 12, - "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__": 103 - }, - "_enabled": true, - "__prefab": { - "__id__": 105 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 153.9579620361328, - "height": 72.04 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "37OYkWCNlMyZtM09NWIt+I" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 103 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "STAGE", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 54, - "_fontSize": 54, - "_fontFamily": "Arial", - "_lineHeight": 54, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -7 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "50j+OakMdKi7llMjie4AOR" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fbldtx3VJOJ6LwmH8QC/Hr", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 110 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 452, - "height": 244 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dbhbGdLZdMaY+u+QuU8aFZ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 112 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "d57f0be0-7e43-4e62-8df4-96a63d82bee3@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": "c8XEjGlSxEhLLNNw80A2at" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 114 - }, - "_alignFlags": 36, - "_target": null, - "_left": 1054, - "_right": 518, - "_top": 0, - "_bottom": 29, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 452, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9e70YcksBMhY8IlwcDGozx" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 116 - }, - "clickEvents": [], - "_interactable": true, - "_transition": 3, - "_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": 0.9, - "_target": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d3AsxK8chNb6cN0PUyDCJa" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "cdR6JHVVxHSaDLORl/LFga", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Button_Battle", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [ - { - "__id__": 119 - }, - { - "__id__": 125 - } - ], - "_active": true, - "_components": [ - { - "__id__": 131 - }, - { - "__id__": 133 - }, - { - "__id__": 135 - }, - { - "__id__": 137 - } - ], - "_prefab": { - "__id__": 139 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 1024, - "y": 104, - "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": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 118 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 120 - }, - { - "__id__": 122 - } - ], - "_prefab": { - "__id__": 124 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -122.5, - "y": 10, - "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__": 119 - }, - "_enabled": true, - "__prefab": { - "__id__": 121 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 146, - "height": 135 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "27t5F1cwtBGqBteyI3V9IL" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 119 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "c84aa1b3-abd7-4760-8b42-3faee1032399@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ffNS4cggNMHanNXQUj0cbj" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "223SU5NtZN+KxgZ+7iWJYz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 118 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 126 - }, - { - "__id__": 128 - } - ], - "_prefab": { - "__id__": 130 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 85.1, - "y": 11.9, - "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__": 125 - }, - "_enabled": true, - "__prefab": { - "__id__": 127 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 171.42393493652344, - "height": 69.04 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cc+T6Sgu9BJon4wWohjjzd" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 125 - }, - "_enabled": true, - "__prefab": { - "__id__": 129 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "BATTLE", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 54, - "_fontSize": 54, - "_fontFamily": "Arial", - "_lineHeight": 54, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 0.5, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -7 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b7wzicDQhEoKdGZn7VSyki" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "cdchVrHQZGYLa76a5HiSMN", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 118 - }, - "_enabled": true, - "__prefab": { - "__id__": 132 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 452, - "height": 244 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5bpxCE/4FHj5g8Lgd/YiQ+" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 118 - }, - "_enabled": true, - "__prefab": { - "__id__": 134 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "a6541019-8f70-4134-8738-61171b472393@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": "e1sTv0RhFMTqq1UBLWnEkc" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 118 - }, - "_enabled": true, - "__prefab": { - "__id__": 136 - }, - "_alignFlags": 36, - "_target": null, - "_left": 0, - "_right": 30, - "_top": 0, - "_bottom": 29, - "_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": "8dKJXrgoJIFYh4CBou4P3F" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 118 - }, - "_enabled": true, - "__prefab": { - "__id__": 138 - }, - "clickEvents": [], - "_interactable": true, - "_transition": 3, - "_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": 0.9, - "_target": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "850H0yDi5CSr7v76DWEsJJ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "80LhVaY0dNI6BUra+wH+Th", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ManMenu", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 95 - }, - "_children": [ - { - "__id__": 141 - }, - { - "__id__": 159 - }, - { - "__id__": 189 - }, - { - "__id__": 219 - } - ], - "_active": true, - "_components": [ - { - "__id__": 243 - }, - { - "__id__": 245 - } - ], - "_prefab": { - "__id__": 247 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -1246.229, - "y": 179.573, - "z": 0.379 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0.026176948307873156, - "y": 0, - "z": 0, - "w": 0.9996573249755573 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 3.000000000000001, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Button_Shop", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 140 - }, - "_children": [ - { - "__id__": 142 - }, - { - "__id__": 148 - } - ], - "_active": true, - "_components": [ - { - "__id__": 154 - }, - { - "__id__": 156 - } - ], - "_prefab": { - "__id__": 158 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 125, - "y": -90, - "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": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 141 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 143 - }, - { - "__id__": 145 - } - ], - "_prefab": { - "__id__": 147 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50.484, - "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__": 142 - }, - "_enabled": true, - "__prefab": { - "__id__": 144 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 131, - "height": 132 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ca0R6dGQBPPZtq07e2JZcn" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 142 - }, - "_enabled": true, - "__prefab": { - "__id__": 146 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "72b9e354-ad2a-4dfe-9f9d-39b8c58036ad@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6c+WNBV1lMfaEl2kl97sgM" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b1ZBq2m4VGRacTr4U6f6c5", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 141 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 149 - }, - { - "__id__": 151 - } - ], - "_prefab": { - "__id__": 153 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0.672, - "y": -44.257, - "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__": 148 - }, - "_enabled": true, - "__prefab": { - "__id__": 150 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 113.844970703125, - "height": 67 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1eqJdBJHNKbaN9vCgYY/ml" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 148 - }, - "_enabled": true, - "__prefab": { - "__id__": 152 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "SHOP", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 45, - "_fontSize": 45, - "_fontFamily": "Arial", - "_lineHeight": 50, - "_overflow": 0, - "_enableWrapText": false, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "95K4xUhlJK/pzZ0iTIQpa5" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "77dJ3d02RLSaCFTZIPnF0D", - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 141 - }, - "_enabled": true, - "__prefab": { - "__id__": 155 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 250, - "height": 210 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "53xYlidoVHbKr4lnXjpie9" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 141 - }, - "_enabled": true, - "__prefab": { - "__id__": 157 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "839f2831-4606-457b-8c31-f26e74c4190f@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": "79VDCQrxhBeIV8OQKaq6vm" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "15rxw8/NtKAoA0guJxrsQT", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Button_Inventory", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 140 - }, - "_children": [ - { - "__id__": 160 - }, - { - "__id__": 166 - }, - { - "__id__": 178 - } - ], - "_active": true, - "_components": [ - { - "__id__": 184 - }, - { - "__id__": 186 - } - ], - "_prefab": { - "__id__": 188 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 418, - "y": -90, - "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": "Icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 159 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 161 - }, - { - "__id__": 163 - } - ], - "_prefab": { - "__id__": 165 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 1.305, - "y": 49.26, - "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__": 160 - }, - "_enabled": true, - "__prefab": { - "__id__": 162 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 135, - "height": 132 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7aNVcwqD9H+aSncq7jNljg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 160 - }, - "_enabled": true, - "__prefab": { - "__id__": 164 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "948360c6-3456-4261-b3ec-2f11e01df595@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "445g/5Nd5NHaapYUaJCH1Q" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "722A6kI7lFKZRuVHeFEQx1", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "AIram", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 159 - }, - "_children": [ - { - "__id__": 167 - } - ], - "_active": true, - "_components": [ - { - "__id__": 173 - }, - { - "__id__": 175 - } - ], - "_prefab": { - "__id__": 177 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 103.228, - "y": 80.896, - "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": "Text_AIram", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 166 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 168 - }, - { - "__id__": 170 - } - ], - "_prefab": { - "__id__": 172 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -2.601, - "y": 1.676, - "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__": 167 - }, - "_enabled": true, - "__prefab": { - "__id__": 169 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 21.1199951171875, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c8johMrzpEu4JV+huVvTL0" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 167 - }, - "_enabled": true, - "__prefab": { - "__id__": 171 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "3", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 0, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_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": "57N3Q1NIVLrYu+3gSVcHXQ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "36KOrh5nFK9bzq1eRD89tL", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 166 - }, - "_enabled": true, - "__prefab": { - "__id__": 174 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 99, - "height": 99 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4cWs6n2rxGkJoO/HDySbcW" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 166 - }, - "_enabled": true, - "__prefab": { - "__id__": 176 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "905656e6-dc49-4d12-a3ef-c478ad0df6c9@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": "95ZjXsaQ1D55nlx1MIqA9/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b0GxvGy71E2r4ZhyZWRqAY", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text_inventory", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 159 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 179 - }, - { - "__id__": 181 - } - ], - "_prefab": { - "__id__": 183 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -43.43, - "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__": 178 - }, - "_enabled": true, - "__prefab": { - "__id__": 180 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 236.40794372558594, - "height": 67 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c57q9UP/NEXqm2y1GKeGTE" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 178 - }, - "_enabled": true, - "__prefab": { - "__id__": 182 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "INVENTORY", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 44, - "_fontSize": 44, - "_fontFamily": "Arial", - "_lineHeight": 50, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0fUr/62AxADoKVJAih3mwu" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1eE0zSz4FN5JwUMvqk9WAc", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 159 - }, - "_enabled": true, - "__prefab": { - "__id__": 185 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 250, - "height": 210 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "42wjUxY7tIgIwl3oHPfGaE" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 159 - }, - "_enabled": true, - "__prefab": { - "__id__": 187 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "3e08e151-e2d3-4f3f-86d7-bedf2f3fd102@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": "cdrUDjyMpKmK6ONHnADfQS" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "aev22mFXFG67AgCnCO0BlE", - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Button_Cards", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 140 - }, - "_children": [ - { - "__id__": 190 - }, - { - "__id__": 196 - }, - { - "__id__": 202 - }, - { - "__id__": 208 - } - ], - "_active": true, - "_components": [ - { - "__id__": 214 - }, - { - "__id__": 216 - } - ], - "_prefab": { - "__id__": 218 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 711, - "y": -90, - "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": "Icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 189 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 191 - }, - { - "__id__": 193 - } - ], - "_prefab": { - "__id__": 195 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 3.541, - "y": 52.86, - "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__": 190 - }, - "_enabled": true, - "__prefab": { - "__id__": 192 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 135, - "height": 142 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f0jW1U0kZDTJkW2LbPXkrt" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 190 - }, - "_enabled": true, - "__prefab": { - "__id__": 194 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "685b7f11-e1c2-4627-b298-495a31881977@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": "12V+OthNxB7p+KON5ZizD/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "80SFfkRRpHVbWIUSCnMnoz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text_Cards", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 189 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 197 - }, - { - "__id__": 199 - } - ], - "_prefab": { - "__id__": 201 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -46.812, - "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__": 196 - }, - "_enabled": true, - "__prefab": { - "__id__": 198 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 136.88494873046875, - "height": 67 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "400k0HKGxArrW4tvrR7iU9" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 196 - }, - "_enabled": true, - "__prefab": { - "__id__": 200 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "CARDS", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 45, - "_fontSize": 45, - "_fontFamily": "Arial", - "_lineHeight": 50, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1bKAaDpulFAabeb/RuyKLu" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "14VhXY58lFro48cxjKQ+NB", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Notify_Cour", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 189 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 203 - }, - { - "__id__": 205 - } - ], - "_prefab": { - "__id__": 207 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 105.145, - "y": 80.921, - "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__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 204 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 99, - "height": 99 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "00idyXUDRC5b3QEXV4G3Wn" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 206 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "95268d6e-889e-4a9a-8768-bccc265e07fb@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": "0dCssBto9K66LOkoniZYCf" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2b2oTzT5BLAr+6z8xLVQZt", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 189 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 209 - }, - { - "__id__": 211 - } - ], - "_prefab": { - "__id__": 213 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 98.956, - "y": 80.399, - "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__": 208 - }, - "_enabled": true, - "__prefab": { - "__id__": 210 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 16.239990234375, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54OTCfCElGdLsLVuB2ZOFI" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 208 - }, - "_enabled": true, - "__prefab": { - "__id__": 212 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "1", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 0, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_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": "bfvlkgd2xGNot9tQIV9r8V" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "39KJvpevdD87EB6qNZTfKC", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 189 - }, - "_enabled": true, - "__prefab": { - "__id__": 215 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 250, - "height": 210 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "756je+6UlGvL1JweCI8/md" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 189 - }, - "_enabled": true, - "__prefab": { - "__id__": 217 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "3e08e151-e2d3-4f3f-86d7-bedf2f3fd102@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": "f6TWuMKzNLzIz04gF3EJO/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d0B0EcWfVFkoZ97d1H9Hei", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Button_Clan", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 140 - }, - "_children": [ - { - "__id__": 220 - }, - { - "__id__": 226 - }, - { - "__id__": 232 - } - ], - "_active": true, - "_components": [ - { - "__id__": 238 - }, - { - "__id__": 240 - } - ], - "_prefab": { - "__id__": 242 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 1004, - "y": -90, - "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": "Icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 219 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 221 - }, - { - "__id__": 223 - } - ], - "_prefab": { - "__id__": 225 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 50.835, - "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__": 220 - }, - "_enabled": true, - "__prefab": { - "__id__": 222 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 133, - "height": 145 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d2TPr+YudAfZJXf9CkNFxr" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 220 - }, - "_enabled": true, - "__prefab": { - "__id__": 224 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b00949e9-8e8a-444f-808a-e2c8fd1d1001@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "20EqN3UJ5Fn53tRxt99xyq" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b26sANhRdCnrKLU9rAvCBo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text_Clan", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 219 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 227 - }, - { - "__id__": 229 - } - ], - "_prefab": { - "__id__": 231 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -46.812, - "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__": 226 - }, - "_enabled": true, - "__prefab": { - "__id__": 228 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 107.45497131347656, - "height": 67 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0fKRE/exdMobxF/0cV+hwo" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 226 - }, - "_enabled": true, - "__prefab": { - "__id__": 230 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "CLAN", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 45, - "_fontSize": 45, - "_fontFamily": "Arial", - "_lineHeight": 50, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "79AvtK1gNMzbETWI4ubY9S" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a9hshOgOVIvY5zmQ13PtcA", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Image", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 219 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 233 - }, - { - "__id__": 235 - } - ], - "_prefab": { - "__id__": 237 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 114.808, - "y": -63.888, - "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__": 232 - }, - "_enabled": true, - "__prefab": { - "__id__": 234 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 52, - "height": 80 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dftAgzzOdIIJw+p2Fw5jP1" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 232 - }, - "_enabled": true, - "__prefab": { - "__id__": 236 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7317bee3-c52e-460a-96d6-e8a932aad15b@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "97I9LxTVhIKqpa7pzi+h1r" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a1hpPGlmNDsqDEM+M2ICl7", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 219 - }, - "_enabled": true, - "__prefab": { - "__id__": 239 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 250, - "height": 210 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "183jWWcNtI/Y5L355ynOwG" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 219 - }, - "_enabled": true, - "__prefab": { - "__id__": 241 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "3e08e151-e2d3-4f3f-86d7-bedf2f3fd102@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": "dcW5eTl69GJp1mRzMBydeP" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f5r8x4S7hDfoxlAh1zlrxm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 140 - }, - "_enabled": true, - "__prefab": { - "__id__": 244 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1129, - "height": 210 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2esMiFRr9I35/VW50DdBnA" + "fileId": "44Xb9bsXpJcJZYRULaMDB2" }, { "__type__": "cc.Layout", @@ -5755,14 +1363,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 15 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 55 }, "_resizeMode": 1, - "_layoutType": 1, + "_layoutType": 2, "_cellSize": { "__type__": "cc.Size", "width": 40, @@ -5773,8 +1381,8 @@ "_paddingRight": 0, "_paddingTop": 0, "_paddingBottom": 0, - "_spacingX": 43, - "_spacingY": 43, + "_spacingX": 0, + "_spacingY": 10, "_verticalDirection": 1, "_horizontalDirection": 0, "_constraint": 0, @@ -5785,7 +1393,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "77GQwQKS9J362nS4H3Rb/s" + "fileId": "aantpX+fxEPKd2yOXM8KyU" }, { "__type__": "cc.PrefabInfo", @@ -5795,7 +1403,9 @@ "asset": { "__id__": 0 }, - "fileId": "83yUtklxxDH5EK4qzL2NIr", + "fileId": "1fPGzQRmJLVIZIXkHjdLRJ", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -5804,16 +1414,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 8 }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 58 }, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 94 + "width": 640, + "height": 100 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5824,52 +1434,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "1d0mM/4XhPOZpG/LmCOM1k" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 95 - }, - "_enabled": true, - "__prefab": { - "__id__": 251 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "a209014c-a495-4d3d-a6a7-74c55a98c1c4@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": "d4iSXCqPZDMIqpZVgtjnJg" + "fileId": "94KtGikKhP97nUOdsf/bwv" }, { "__type__": "cc.Widget", @@ -5877,13 +1442,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 8 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 60 }, - "_alignFlags": 44, + "_alignFlags": 41, "_target": null, "_left": 0, "_right": 0, @@ -5905,7 +1470,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "03SpRZdC1PjIqKpLSTionr" + "fileId": "39LWlbWSNNK75PjQALJWDc" }, { "__type__": "cc.PrefabInfo", @@ -5915,4556 +1480,11 @@ "asset": { "__id__": 0 }, - "fileId": "49NRhbyIpEdbtB8OlSfBZB", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Topleft", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 256 - }, - { - "__id__": 310 - }, - { - "__id__": 376 - } - ], - "_active": true, - "_components": [ - { - "__id__": 436 - }, - { - "__id__": 438 - } - ], - "_prefab": { - "__id__": 440 - }, - "_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": "User_Info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 257 - } - ], - "_active": true, - "_components": [ - { - "__id__": 305 - }, - { - "__id__": 307 - } - ], - "_prefab": { - "__id__": 309 - }, - "_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": "Slider_IconType", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 256 - }, - "_children": [ - { - "__id__": 258 - }, - { - "__id__": 276 - }, - { - "__id__": 288 - }, - { - "__id__": 294 - } - ], - "_active": true, - "_components": [ - { - "__id__": 300 - }, - { - "__id__": 302 - } - ], - "_prefab": { - "__id__": 304 - }, - "_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": "Slider05_Fram", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [ - { - "__id__": 259 - }, - { - "__id__": 265 - } - ], - "_active": true, - "_components": [ - { - "__id__": 271 - }, - { - "__id__": 273 - } - ], - "_prefab": { - "__id__": 275 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -964.168, - "y": 627.077, - "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": "Slider05_Fill", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 258 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 260 - }, - { - "__id__": 262 - } - ], - "_prefab": { - "__id__": 264 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -150.871, - "y": -3.426, - "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__": 259 - }, - "_enabled": true, - "__prefab": { - "__id__": 261 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 260, - "height": 50 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b0Icl+0kRKtpiR3sCfR2OS" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 259 - }, - "_enabled": true, - "__prefab": { - "__id__": 263 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7ebbd0e7-937f-4777-bff1-ae1b6b32a895@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": "8fanUPYwlEY5gQ5ModMQzG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "27+X6fazVHaK3yyKv+9MWV", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 258 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 266 - }, - { - "__id__": 268 - } - ], - "_prefab": { - "__id__": 270 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -22.073, - "y": -4.568, - "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__": 265 - }, - "_enabled": true, - "__prefab": { - "__id__": 267 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 146.30796813964844, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "14r4NIUv5AWogXX+rtG/w7" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 265 - }, - "_enabled": true, - "__prefab": { - "__id__": 269 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "183/400", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 36, - "_fontSize": 36, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1261iLbRhB2K9EpkpNPC9u" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d1ffgSPHJB3rj9J49CVBoi", + "fileId": "01DK1mnNtMm5CwjEcISNzT", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 258 - }, - "_enabled": true, - "__prefab": { - "__id__": 272 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 519, - "height": 55 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0eJwXPRblE5Yixve1L+k65" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 258 - }, - "_enabled": true, - "__prefab": { - "__id__": 274 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "a0061d0e-ad64-4b44-bcc9-f48006dad69c@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": "92vjO+HedKEbjFw6eiV8Nh" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5eUw/qj/9A47r5TB/n4Ayo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Slider05_Icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [ - { - "__id__": 277 - } - ], - "_active": true, - "_components": [ - { - "__id__": 283 - }, - { - "__id__": 285 - } - ], - "_prefab": { - "__id__": 287 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -1204.372, - "y": 632.872, - "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": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 276 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 278 - }, - { - "__id__": 280 - } - ], - "_prefab": { - "__id__": 282 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0.729, - "y": 4.673, - "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__": 277 - }, - "_enabled": true, - "__prefab": { - "__id__": 279 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 41.67999267578125, - "height": 69.22 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0bWxTq70NOXZvqwtbVf1Cb" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 277 - }, - "_enabled": true, - "__prefab": { - "__id__": 281 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "3", - "_horizontalAlign": 2, - "_verticalAlign": 2, - "_actualFontSize": 60, - "_fontSize": 60, - "_fontFamily": "Arial", - "_lineHeight": 47, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 5, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": -8 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c0HAOcG2FJx6t4UsLI1JNK" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6bDqCnyldC5bMrxOdRmWMx", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 276 - }, - "_enabled": true, - "__prefab": { - "__id__": 284 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 96, - "height": 122 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ffACoPXrlFObpPZWxGLJCa" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 276 - }, - "_enabled": true, - "__prefab": { - "__id__": 286 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6b2724c4-304a-408f-9137-9d118894be7d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "64cAR8iupGgb/dfQTv7isc" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ba0aaWjptJ4qKj32ApgQgj", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 289 - }, - { - "__id__": 291 - } - ], - "_prefab": { - "__id__": 293 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -1095.095, - "y": 680.377, - "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__": 288 - }, - "_enabled": true, - "__prefab": { - "__id__": 290 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 112.31996154785156, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d2m4VX3AtO8p2qBCJXTC7F" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 288 - }, - "_enabled": true, - "__prefab": { - "__id__": 292 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "Ryuen", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "09J96tAaNFabxFKgyqvwBm" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8aGHvtNJxGbKvrPJOqT14R", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 257 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 295 - }, - { - "__id__": 297 - } - ], - "_prefab": { - "__id__": 299 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -643.811, - "y": 625.511, - "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__": 294 - }, - "_enabled": true, - "__prefab": { - "__id__": 296 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 76, - "height": 81 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8egODZZORJnYeWO8nlwMf+" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 294 - }, - "_enabled": true, - "__prefab": { - "__id__": 298 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7414e341-64d4-4958-bf20-7bb75c61c634@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b5O+w2NW1B64H10b4jy30X" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a3CKaZZlBGD7F/sht/nMNQ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 257 - }, - "_enabled": true, - "__prefab": { - "__id__": 301 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 36 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a4mwDGqXtH54mAgrjwhhFh" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 257 - }, - "_enabled": true, - "__prefab": { - "__id__": 303 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "844DYdqSRKxojaJBa0mZ3J" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "554rY0lndOvLV5k84/laG+", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 256 - }, - "_enabled": true, - "__prefab": { - "__id__": 306 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 36 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d5gKQZVixFobA587r62bTM" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 256 - }, - "_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__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "99RQA+tlxPiYUQl00Bv90j" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b6004UhiJKcYb3bosRO88z", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Chest_Info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 311 - }, - { - "__id__": 341 - }, - { - "__id__": 359 - }, - { - "__id__": 365 - } - ], - "_active": true, - "_components": [ - { - "__id__": 371 - }, - { - "__id__": 373 - } - ], - "_prefab": { - "__id__": 375 - }, - "_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": "Sliders", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 310 - }, - "_children": [ - { - "__id__": 312 - }, - { - "__id__": 318 - }, - { - "__id__": 330 - } - ], - "_active": true, - "_components": [ - { - "__id__": 336 - }, - { - "__id__": 338 - } - ], - "_prefab": { - "__id__": 340 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -957.299, - "y": 436.378, - "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": "Slider_Orange", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 311 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 313 - }, - { - "__id__": 315 - } - ], - "_prefab": { - "__id__": 317 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 103.641, - "y": -50.528, - "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__": 312 - }, - "_enabled": true, - "__prefab": { - "__id__": 314 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 50 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "87Cp4VFd9EoqHSKgcP2ODk" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 312 - }, - "_enabled": true, - "__prefab": { - "__id__": 316 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 236, - "g": 70, - "b": 5, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@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": "b9kMiLBthPLrWxQ/epjLAh" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "868o6DUHFG05OqpVc0IVZn", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Slider_Yellow", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 311 - }, - "_children": [ - { - "__id__": 319 - } - ], - "_active": true, - "_components": [ - { - "__id__": 325 - }, - { - "__id__": 327 - } - ], - "_prefab": { - "__id__": 329 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -28.817, - "y": -50.528, - "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": "Image", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 318 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 320 - }, - { - "__id__": 322 - } - ], - "_prefab": { - "__id__": 324 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 84.702, - "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__": 319 - }, - "_enabled": true, - "__prefab": { - "__id__": 321 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 15, - "height": 50 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "874146RBlCNKLUYNEe11ef" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 319 - }, - "_enabled": true, - "__prefab": { - "__id__": 323 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "ca98f461-57c2-4d4b-8a0a-5c376cad6e13@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": "55ROPEKAZDTZ7my1IW6fqO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c2U5c580tLa6/YiwkDCoQa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 318 - }, - "_enabled": true, - "__prefab": { - "__id__": 326 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 158.7, - "height": 50 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "52ukfwfZxIDqZCkw1qONMn" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 318 - }, - "_enabled": true, - "__prefab": { - "__id__": 328 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 214, - "b": 0, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@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": "1eT2bzrFVBHbIExx++1nwU" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c1pz2WikdCQKds2SekoKQd", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text_Value", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 311 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 331 - }, - { - "__id__": 333 - } - ], - "_prefab": { - "__id__": 335 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 47.004, - "y": 19.294, - "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__": 330 - }, - "_enabled": true, - "__prefab": { - "__id__": 332 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 194.2999725341797, - "height": 67 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "adPZrgP7hMNIYkt7YzxOHf" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 330 - }, - "_enabled": true, - "__prefab": { - "__id__": 334 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "275/100", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "Arial", - "_lineHeight": 50, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dcaGnAG39OVazBYwwGYFeZ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "25XWmlh0dI1bG4ylM+Yn/W", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 311 - }, - "_enabled": true, - "__prefab": { - "__id__": 337 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 350, - "height": 155 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6coCjA91ZFJbwG7maontJS" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 311 - }, - "_enabled": true, - "__prefab": { - "__id__": 339 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "826e8d0c-4d3d-4953-8c17-e0d022cdb283@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": "24fkl3Gq5C57gtVch9H0qN" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "42SNx3ajVAnYfrDYl+IwQp", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Chest", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 310 - }, - "_children": [ - { - "__id__": 342 - } - ], - "_active": true, - "_components": [ - { - "__id__": 354 - }, - { - "__id__": 356 - } - ], - "_prefab": { - "__id__": 358 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -1149.62, - "y": 436.103, - "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": "Chest_Count", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 341 - }, - "_children": [ - { - "__id__": 343 - } - ], - "_active": true, - "_components": [ - { - "__id__": 349 - }, - { - "__id__": 351 - } - ], - "_prefab": { - "__id__": 353 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 100.116, - "y": 49.317, - "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": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 342 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 344 - }, - { - "__id__": 346 - } - ], - "_prefab": { - "__id__": 348 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -2.983, - "y": 3.793, - "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__": 343 - }, - "_enabled": true, - "__prefab": { - "__id__": 345 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 14.209991455078125, - "height": 31.5 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dfdfgx56pFX75yKrHaRKMD" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 343 - }, - "_enabled": true, - "__prefab": { - "__id__": 347 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "1", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 35, - "_fontSize": 35, - "_fontFamily": "Arial", - "_lineHeight": 25, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_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": "21k7+LaztMC77RXz7brZDx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2acyh9CuRJGLu4gTLfMg35", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 342 - }, - "_enabled": true, - "__prefab": { - "__id__": 350 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 99, - "height": 99 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4f9O9f6hREq4LZFaZyAQyJ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 342 - }, - "_enabled": true, - "__prefab": { - "__id__": 352 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "905656e6-dc49-4d12-a3ef-c478ad0df6c9@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "369gvG4D5M9aJIWNJlZVua" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8bpuwgsSJLAaZVXgQGx3ZP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 341 - }, - "_enabled": true, - "__prefab": { - "__id__": 355 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 203, - "height": 166 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a4x/K1cv1HlJosNoVpO5tp" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 341 - }, - "_enabled": true, - "__prefab": { - "__id__": 357 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "374e571b-c1ee-410d-bde5-3d0fde425756@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7bi7vVJAhNoIS6/fY/0zX2" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3el1vqQNdHGabdnR8hBPbb", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Token", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 310 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 360 - }, - { - "__id__": 362 - } - ], - "_prefab": { - "__id__": 364 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -820.911, - "y": 385.151, - "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__": 359 - }, - "_enabled": true, - "__prefab": { - "__id__": 361 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 76, - "height": 89 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d7qsiD22lJgLe9KPhKtjJS" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 359 - }, - "_enabled": true, - "__prefab": { - "__id__": 363 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "2772ba5e-5c43-418c-9ee7-ae10f745f3d7@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": "17rGss6/VEOpdFWxODhYfM" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b5pKPU9I5PjrwLazOL5hYc", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 310 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 366 - }, - { - "__id__": 368 - } - ], - "_prefab": { - "__id__": 370 - }, - "_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__": 365 - }, - "_enabled": true, - "__prefab": { - "__id__": 367 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 36 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6aiT2UF2JDnrYwi0/09nyf" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 365 - }, - "_enabled": true, - "__prefab": { - "__id__": 369 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aaOe+TsQZAfLGRfIPtd11h" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3aH6kAzrRHfreZuj2Iie01", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 310 - }, - "_enabled": true, - "__prefab": { - "__id__": 372 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 36 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "45SMJXAiZDToau/IBAn4iP" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 310 - }, - "_enabled": true, - "__prefab": { - "__id__": 374 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "93UiL6ZkZG1rq88jNsZ4wI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "20cnjylnxPapparukCbMqw", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "GoldenPass_Info", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 255 - }, - "_children": [ - { - "__id__": 377 - }, - { - "__id__": 383 - }, - { - "__id__": 389 - }, - { - "__id__": 395 - }, - { - "__id__": 401 - }, - { - "__id__": 425 - } - ], - "_active": true, - "_components": [ - { - "__id__": 431 - }, - { - "__id__": 433 - } - ], - "_prefab": { - "__id__": 435 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -898.1565, - "y": 201.571, - "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": "Image_GoldenPass", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 378 - }, - { - "__id__": 380 - } - ], - "_prefab": { - "__id__": 382 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 259.704, - "y": 15.302, - "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__": 377 - }, - "_enabled": true, - "__prefab": { - "__id__": 379 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 196, - "height": 157 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "fbiFOCNbBLpopMdkkfqlmt" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 377 - }, - "_enabled": true, - "__prefab": { - "__id__": 381 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "bb4588b5-c269-4f2f-bb10-5a4acc0c299d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7bSkYt4kZFjIUAKJfRueL8" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5a/ua9+QVGrZqt6D9y6DHg", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text_GoldenPass", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 384 - }, - { - "__id__": 386 - } - ], - "_prefab": { - "__id__": 388 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 249.979, - "y": -59.859, - "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__": 383 - }, - "_enabled": true, - "__prefab": { - "__id__": 385 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 194.84593200683594, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "42/rn8fMBE56rMIXGk3NJg" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 383 - }, - "_enabled": true, - "__prefab": { - "__id__": 387 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 224, - "b": 13, - "a": 255 - }, - "_string": "Golden Pass", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 37, - "_fontSize": 37, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0dybI0bGxJo5It9XPQPpCb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "edhcMvrltJn6Pp7TeIpVU7", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text_Season", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 390 - }, - { - "__id__": 392 - } - ], - "_prefab": { - "__id__": 394 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -224.22, - "y": 49.303, - "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__": 389 - }, - "_enabled": true, - "__prefab": { - "__id__": 391 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 145.179931640625, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a1AyBW23RBl5C/Yplfwbth" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 389 - }, - "_enabled": true, - "__prefab": { - "__id__": 393 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 87, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "SEASON 1", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 35, - "_fontSize": 35, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_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": "79bdyS/15BSqgTK1C5KcSI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4bYJc1K0ZDT5hUv+PzKpsd", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 396 - }, - { - "__id__": 398 - } - ], - "_prefab": { - "__id__": 400 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -75.139, - "y": 50.183, - "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__": 395 - }, - "_enabled": true, - "__prefab": { - "__id__": 397 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 111.14997863769531, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c7gQ5bnYNG2Kf6VjBEBV92" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 395 - }, - "_enabled": true, - "__prefab": { - "__id__": 399 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "2/10", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "67Ctj1zI5OAJTc+DZQPegp" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "588ubjVOdJXYW1IYI+w8+J", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Slider_IconType02_Frame", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [ - { - "__id__": 402 - } - ], - "_active": true, - "_components": [ - { - "__id__": 420 - }, - { - "__id__": 422 - } - ], - "_prefab": { - "__id__": 424 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -93.225, - "y": -31.438, - "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": "Slider_IconType02_Fill", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 401 - }, - "_children": [ - { - "__id__": 403 - } - ], - "_active": true, - "_components": [ - { - "__id__": 415 - }, - { - "__id__": 417 - } - ], - "_prefab": { - "__id__": 419 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -121.308, - "y": -2.085, - "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": "Slider_IconType02_Icon1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 402 - }, - "_children": [ - { - "__id__": 404 - } - ], - "_active": true, - "_components": [ - { - "__id__": 410 - }, - { - "__id__": 412 - } - ], - "_prefab": { - "__id__": 414 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -54.42, - "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": "Text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 403 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 405 - }, - { - "__id__": 407 - } - ], - "_prefab": { - "__id__": 409 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -2.725, - "y": 1.292, - "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__": 404 - }, - "_enabled": true, - "__prefab": { - "__id__": 406 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 24.29998779296875, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7fvNodY7NH54uryXqidPM2" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 404 - }, - "_enabled": true, - "__prefab": { - "__id__": 408 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "1", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "1e4ba4a2-7090-4e7b-8479-72285e08cdeb", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": true, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 0, - "y": -6 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0cersdyX1DKIBu1LjlJowG" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "93pfoOH8NMIaork6EY+yjH", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 403 - }, - "_enabled": true, - "__prefab": { - "__id__": 411 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 71, - "height": 75 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "97Lwey6GpN0YrFwlBi865e" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 403 - }, - "_enabled": true, - "__prefab": { - "__id__": 413 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e9ac0c63-3b58-4f30-99d7-37b0884824f0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b7455Ss9FADq46jtXuSpFe" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "begGiPY8JFUotmkjQgMfFo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 402 - }, - "_enabled": true, - "__prefab": { - "__id__": 416 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 56, - "height": 38 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d2AXsxNaxDQYDuYsP8D1WY" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 402 - }, - "_enabled": true, - "__prefab": { - "__id__": 418 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "22711d2e-fec5-4e9e-a9c0-0c44ad9f55d4@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": "fetDwSelFELb+HVBgIjGBD" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c33A+uBQpDiZ+r+rlhzm+5", - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 401 - }, - "_enabled": true, - "__prefab": { - "__id__": 421 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 45 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f9HDta9u1McJJx3DjM80C7" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 401 - }, - "_enabled": true, - "__prefab": { - "__id__": 423 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "bfead96c-f3b1-4940-8871-9af603814e90@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": "5ar/98rmhPhKaso5gQwNcB" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "245nj3JjdNK7y4tLs2qzGw", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Slider_IconType02_Icon2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 376 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 426 - }, - { - "__id__": 428 - } - ], - "_prefab": { - "__id__": 430 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 81.112, - "y": -28.424, - "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__": 425 - }, - "_enabled": true, - "__prefab": { - "__id__": 427 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 97, - "height": 93 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "eeK5xON+tBApB0eymwE2NY" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 425 - }, - "_enabled": true, - "__prefab": { - "__id__": 429 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "052eaa64-38d6-44be-bdb4-e6a64616dfd0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "123BGlpZ9Er618Wdbd9nqx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3aNeZmoMVLBKXarrz30DIy", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 376 - }, - "_enabled": true, - "__prefab": { - "__id__": 432 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 671.851, - "height": 204.742 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6d5EYXdCFNZqy0SJNGWgGG" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 376 - }, - "_enabled": true, - "__prefab": { - "__id__": 434 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "4391e832-6409-4294-9435-5d5ac8ac5d2d@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": "d5muceeBZAuJ7DbNAnouHr" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fbGM+TbqtFAZ130LhLpfLY", - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 437 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 40, - "height": 36 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "11KgwbKH1GSK8QsqQTR/3N" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 255 - }, - "_enabled": true, - "__prefab": { - "__id__": 439 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c7OrY2yZ1EDbDk7GIjXULl" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e42UavHJdLKrbpBKcnjIV+", - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.UITransform", "_name": "", @@ -10475,12 +1495,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 442 + "__id__": 63 }, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 1440 + "width": 640, + "height": 1138 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -10503,12 +1523,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 444 + "__id__": 65 }, "_alignFlags": 45, "_target": null, - "_left": 0, - "_right": 0, + "_left": 1.0530000000000168, + "_right": -1.0530000000000168, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -10539,7 +1559,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 446 + "__id__": 67 }, "_id": "" }, @@ -10557,11 +1577,6 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": [ - { - "__id__": 33 - } - ] + "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/games/scripts/pets.meta b/assets/games/scripts/pets.meta new file mode 100644 index 0000000..b5e35a1 --- /dev/null +++ b/assets/games/scripts/pets.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d098e1e4-9d54-4ad0-88f0-f13bf7c77e51", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/BasePart.ts b/assets/games/scripts/pets/BasePart.ts new file mode 100644 index 0000000..792db58 --- /dev/null +++ b/assets/games/scripts/pets/BasePart.ts @@ -0,0 +1,232 @@ +import { instantiate, Node, sp, Sprite, SpriteFrame, Texture2D } from "cc"; +import { DRESS_PART, DRESS_SOURCE_TYPE, IDressInfo, SPINE_SLOT, SPINE_SOCKET } from "./Types"; +import ResManager from "@max-studio/core/res/ResManager"; +import { loadDressSocketNode } from "./PetUtils"; +import { StringUtils } from "@max-studio/core/utils/StringUtils"; + +export class BasePart { + protected skeleton: sp.Skeleton = null; + protected info: IDressInfo = null; + protected socketName: string = null; + protected part: DRESS_PART = null; + protected faceSkeleton: sp.Skeleton = null; + protected socketMountNode: Node = null; + protected socketCache: Map = new Map(); + protected socketNode: Node = null; + + constructor(ske: sp.Skeleton, part: DRESS_PART) { + this.skeleton = ske; + this.part = part; + this.socketName = SPINE_SOCKET[part]; + this.faceSkeleton = ske.node.getChildByName("face")?.getComponent(sp.Skeleton); + } + + public async putOn(info: IDressInfo) { + this.takeOff(); + this.info = info; + if (info.sourceLocationType == DRESS_SOURCE_TYPE.SLOT) { + await this.putOnBySlot(info); + } else { + await this.putOnBySocket(info); + } + } + public takeOff() { + if (this.info == null) { + return; + } + const partSkeleton = this.getPartSkeleton(); + if (this.info.sourceLocationType == DRESS_SOURCE_TYPE.SLOT) { + const slotName = SPINE_SLOT[this.part]; + if (StringUtils.isEmpty(slotName) || partSkeleton == null) { + console.error("宠物_槽位_空", slotName); + return; + } + const slot = partSkeleton.findSlot(slotName); + if (!slot) { + console.error("宠物_槽位_不存在", slotName); + return; + } + if (slot.texture) { + ResManager.getInstance().releaseAsset(slot.texture); + slot.texture = null; + } + partSkeleton.setSlotTexture(slotName, null, true); + } else { + if (!this.socketNode) { + return; + } + const socketSprite = this.socketNode.getOrAddComponent(Sprite, "Texture"); + if (socketSprite && socketSprite.spriteFrame) { + ResManager.getInstance().releaseAsset(socketSprite.spriteFrame); + socketSprite.spriteFrame = null; + } + const spine = this.socketNode.getOrAddComponent(sp.Skeleton, "Spine"); + if (spine && spine.skeletonData) { + ResManager.getInstance().releaseAsset(spine.skeletonData); + spine.skeletonData = undefined; + spine.animation = undefined; + } + } + this.info = null; + } + + private getPartSkeleton() { + if ( + this.part == DRESS_PART.GLASSES || + this.part == DRESS_PART.ACCESS || + this.info.sourceLocationType == DRESS_SOURCE_TYPE.SOCKET_TEX_FACE || + this.info.sourceLocationType == DRESS_SOURCE_TYPE.SOCKET_SPINE_FACE + ) { + return this.faceSkeleton; + } + return this.skeleton; + } + + private getPartBonePath(skeleton: sp.Skeleton, name: string) { + let path = ""; + console.log("获取宠物_骨骼_路径:", name); + let bone = skeleton.findBone(name); + if (bone) { + path = bone.data.name; + while (bone.parent) { + bone = bone.parent; + path = `${bone.data.name}/${path}`; + if ("root" == bone.data.name) { + break; + } + } + } + return path; + } + + private getSocketNode(ske: sp.Skeleton, path: string): sp.SpineSocket { + let socket = this.socketCache.get(path); + if (socket == null) { + const sockets = ske.sockets as sp.SpineSocket[]; + socket = sockets.find((s) => s.path == path); + if (!socket) { + console.error("宠物_挂点_不存在 创建挂点:", path); + socket = new sp.SpineSocket(path); + sockets.push(socket); + ske.sockets = sockets; + } + this.socketCache.set(path, socket); + } + return socket; + } + + private async putOnBySlot(info: IDressInfo) { + const partSkeleton = this.getPartSkeleton(); + const slotName = SPINE_SLOT[this.part]; + if (StringUtils.isEmpty(slotName) || partSkeleton == null) { + console.error("宠物_槽位_空", slotName); + return; + } + const slot = partSkeleton.findSlot(slotName); + if (!slot) { + console.error("宠物_槽位_不存在", slotName); + return; + } + if (!info) { + if (slot.texture) { + ResManager.getInstance().releaseAsset(slot.texture); + slot.texture = null; + } + partSkeleton.setSlotTexture(slotName, null, true); + return; + } + const { err, asset } = await ResManager.getInstance().loadAsset({ + bundle: "dress-spine", + path: `DressTexture/${info.sourceName}`, + type: Texture2D, + }); + if (err) { + console.error("加载宠物_槽位_失败", err); + return; + } + if (this.info != info) { + ResManager.getInstance().releaseAsset(asset); + return; + } + if (slot.texture != null) { + ResManager.getInstance().releaseAsset(slot.texture); + slot.texture = null; + } + + slot.texture = asset; + partSkeleton.setSlotTexture(slotName, asset, true); + } + + private async putOnBySocket(info: IDressInfo) { + const partSkeleton = this.getPartSkeleton(); + const bonePath = this.getPartBonePath(partSkeleton, this.socketName); + if (this.socketNode == null) { + const socketPrefab = await loadDressSocketNode(); + if (socketPrefab == null) { + return; + } + this.socketNode = instantiate(socketPrefab); + } + + if ( + info.sourceLocationType == DRESS_SOURCE_TYPE.SOCKET_TEX_FACE || + info.sourceLocationType == DRESS_SOURCE_TYPE.SOCKET_TEX + ) { + const loadInfo = await ResManager.getInstance().loadAsset({ + bundle: "dress-spine", + path: `DressTexture/${info.sourceName}`, + type: SpriteFrame, + }); + if (loadInfo.err) { + console.error("加载宠物_socket_tex失败", loadInfo.err); + } else { + if (this.info == info) { + const socketSprite = this.socketNode.getOrAddComponent(Sprite, "Texture"); + socketSprite.spriteFrame = loadInfo.asset as SpriteFrame; + } else { + console.warn("加载宠物_socket_tex失败,但是不是当前宠物"); + ResManager.getInstance().releaseAsset(loadInfo.asset); + } + } + } else if ( + info.sourceLocationType == DRESS_SOURCE_TYPE.SOCKET_SPINE || + info.sourceLocationType == DRESS_SOURCE_TYPE.SOCKET_SPINE_FACE + ) { + const loadInfo = await ResManager.getInstance().loadAsset({ + bundle: "dress-spine", + path: `DressSpine/${info.sourceName}/${info.sourceName}`, + type: sp.SkeletonData, + }); + if (loadInfo.err) { + console.error("加载宠物_socket_spine失败", loadInfo.err); + } else { + if (this.info == info) { + const spine = this.socketNode.getOrAddComponent(sp.Skeleton, "Spine"); + spine.animation = undefined; + spine.skeletonData = loadInfo.asset as sp.SkeletonData; + spine.setAnimation(0, "idle", true); + } else { + console.warn("加载宠物_socket_spine失败,但是不是当前宠物"); + ResManager.getInstance().releaseAsset(loadInfo.asset); + } + } + } + + this.socketNode.setParent(partSkeleton.node); + const socket = this.getSocketNode(partSkeleton, bonePath); + this.socketNode.layer = partSkeleton.node.layer; + socket.target = this.socketNode; + const socketSpine = this.socketNode.getOrAddComponent(sp.Skeleton); + if (socketSpine && socketSpine.skeletonData) { + socketSpine.setAnimation(0, "idle", true); + } + // eslint-disable-next-line no-self-assign + partSkeleton.sockets = partSkeleton.sockets; + this.setSocketZIndex(); + } + protected setSocketZIndex() { + if (this.socketNode) { + this.socketNode.setSiblingIndex(0); + } + } +} diff --git a/extensions/max-studio/assets/max-studio/core/res/RemoteSpriteCache.ts.meta b/assets/games/scripts/pets/BasePart.ts.meta similarity index 70% rename from extensions/max-studio/assets/max-studio/core/res/RemoteSpriteCache.ts.meta rename to assets/games/scripts/pets/BasePart.ts.meta index 69fbc7e..a01c996 100644 --- a/extensions/max-studio/assets/max-studio/core/res/RemoteSpriteCache.ts.meta +++ b/assets/games/scripts/pets/BasePart.ts.meta @@ -2,7 +2,7 @@ "ver": "4.0.24", "importer": "typescript", "imported": true, - "uuid": "72082034-0f4c-43b7-b108-0019caeec10a", + "uuid": "e07784d9-9898-4cde-b467-3deaba247a36", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/games/scripts/pets/BasePet.ts b/assets/games/scripts/pets/BasePet.ts new file mode 100644 index 0000000..8fc5f97 --- /dev/null +++ b/assets/games/scripts/pets/BasePet.ts @@ -0,0 +1,82 @@ +import { Component, _decorator, sp } from "cc"; +import { COMMON_FACE_ANIM, DRESS_PART, IDressInfo, PET_ANIM_NAME, PET_BODY_FACE_ANIM_MAP, PetInfo } from "./Types"; +import { autoBind } from "@max-studio/core/ui/UIDecorator"; +import { BasePart } from "./BasePart"; +import { GlarePart } from "./GlarePart"; +const { ccclass } = _decorator; + +@ccclass("BasePet") +export class BasePet extends Component { + private petInfo: PetInfo; + + @autoBind("RootNode/PetAni", sp.Skeleton) + private petBodySkeleton: sp.Skeleton = null; + + @autoBind("RootNode/PetAni/face", sp.Skeleton) + private petFace: sp.Skeleton = null; + + private parts: Map = new Map(); + + protected onLoad(): void { + this.parts.set(DRESS_PART.GLARE, new GlarePart(this.petBodySkeleton, DRESS_PART.GLARE)); + this.parts.set(DRESS_PART.BAG, new BasePart(this.petBodySkeleton, DRESS_PART.BAG)); + this.parts.set(DRESS_PART.GLASSES, new BasePart(this.petBodySkeleton, DRESS_PART.GLASSES)); + this.parts.set(DRESS_PART.HAT, new BasePart(this.petBodySkeleton, DRESS_PART.HAT)); + this.parts.set(DRESS_PART.ACCESS, new BasePart(this.petBodySkeleton, DRESS_PART.ACCESS)); + } + + public setInfo(info: PetInfo) { + this.petInfo = info; + } + + public getInfo(): PetInfo { + return this.petInfo; + } + + public async putOn(info: IDressInfo) { + const { type, sourceLocationType, sourceName } = info; + if (type == DRESS_PART.SUIT) { + if (info.dressMap) { + info.dressMap.forEach(async (dressInfo) => { + await this.parts.get(dressInfo.type)?.putOn(dressInfo); + }); + } + return; + } + await this.parts.get(type)?.putOn(info); + } + + public takeOff(type: DRESS_PART = DRESS_PART.ALL) { + if (type == DRESS_PART.ALL) { + this.parts.forEach((part) => { + part.takeOff(); + }); + } else { + this.parts.get(type)?.takeOff(); + } + } + + public playAnim(anim: PET_ANIM_NAME) { + this.petBodySkeleton.setAnimation(0, anim, true); + const faceAnim = PET_BODY_FACE_ANIM_MAP[anim] ?? PET_ANIM_NAME.IDLE; + this.petFace.setAnimation(0, faceAnim, true); + this.setFaceSkinFromAnim(faceAnim); + } + + protected setFaceSkinFromAnim(faceAnim: PET_ANIM_NAME) { + let faceSkin: string = faceAnim; + if (!COMMON_FACE_ANIM.includes(faceAnim)) { + faceSkin = `eye/${this.petInfo.name}`; + } + this.petFace.setSkin(faceSkin); + this.petFace._skeleton?.slots.forEach((slot) => { + const slotName = slot.data.name.toLowerCase(); + if (slotName.endsWith("_hui")) { + slot.color.a = slotName == `${this.petInfo.name}_hui`.toLowerCase() ? 1 : 0; + } + if (slotName.startsWith("dk")) { + console.log("slotName:", slotName); + } + }); + } +} diff --git a/extensions/max-studio/assets/max-studio/core/res/LocalSprite.ts.meta b/assets/games/scripts/pets/BasePet.ts.meta similarity index 70% rename from extensions/max-studio/assets/max-studio/core/res/LocalSprite.ts.meta rename to assets/games/scripts/pets/BasePet.ts.meta index c2acfb1..c7aa28b 100644 --- a/extensions/max-studio/assets/max-studio/core/res/LocalSprite.ts.meta +++ b/assets/games/scripts/pets/BasePet.ts.meta @@ -2,7 +2,7 @@ "ver": "4.0.24", "importer": "typescript", "imported": true, - "uuid": "21febc68-719c-4eab-90d3-193f9f15abba", + "uuid": "5df90b9c-7a32-4e70-b46f-1510986c73d4", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/games/scripts/pets/FacePart.ts b/assets/games/scripts/pets/FacePart.ts new file mode 100644 index 0000000..c5d3b6a --- /dev/null +++ b/assets/games/scripts/pets/FacePart.ts @@ -0,0 +1,3 @@ +import { BasePart } from "./BasePart"; + +export class FacePart extends BasePart {} diff --git a/assets/games/scripts/pets/FacePart.ts.meta b/assets/games/scripts/pets/FacePart.ts.meta new file mode 100644 index 0000000..fbe9a82 --- /dev/null +++ b/assets/games/scripts/pets/FacePart.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "dbc0d9b3-b0a1-4121-8e48-9c991101a10b", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/GlarePart.ts b/assets/games/scripts/pets/GlarePart.ts new file mode 100644 index 0000000..8dcb7be --- /dev/null +++ b/assets/games/scripts/pets/GlarePart.ts @@ -0,0 +1,90 @@ +import { easing, instantiate, Node, Prefab, sp, tween, Tween, Vec3 } from "cc"; +import { BasePart } from "./BasePart"; +import { DRESS_PART, DRESS_SOURCE_TYPE, IDressInfo } from "./Types"; +import ResManager from "@max-studio/core/res/ResManager"; + +const GLARE_NODE_NAME = "glare"; +const GLARE_DEFAULT_POSITION = new Vec3(-170, 0, 0); + +export class GlarePart extends BasePart { + private glareNode: Node = null; + private glareSpine: sp.Skeleton = null; + private glarePrefab: Prefab = null; + + constructor(ske: sp.Skeleton, part: DRESS_PART) { + super(ske, part); + this.getGlareNode(); + } + + public async putOn(info: IDressInfo) { + this.takeOff(); + this.info = info; + const loadInfo = await ResManager.getInstance().loadAsset({ + bundle: "dress-spine", + path: `DressGlare/${info.sourceName}`, + type: Prefab, + }); + if (loadInfo.err) { + console.error("加载宠物_槽位_失败", loadInfo.err); + return; + } + this.glarePrefab = loadInfo.asset; + const node = instantiate(loadInfo.asset); + node.name = "sp"; + node.setParent(this.glareNode); + if (node == null) { + return; + } + this.glareSpine = node.getComponent(sp.Skeleton); + this.glareSpine.setAnimation(0, "animation", false); + this.glareNode.setScale(this.skeleton.node.scale); + Tween.stopAllByTarget(this.glareNode); + const dir = this.glareNode.scale.x; + GLARE_DEFAULT_POSITION.x = dir > 0 ? -170 : 170; + + tween(this.glareNode).to(0.35, { position: GLARE_DEFAULT_POSITION }, { easing: easing.sineOut }).start(); + + if (this.info.sourceLocationType == DRESS_SOURCE_TYPE.NONE) { + this.glareNode.setSiblingIndex(0); + } else { + this.glareNode.setSiblingIndex(this.glareNode.parent.children.length - 1); + } + } + + public takeOff() { + if (this.glareSpine == null) { + return; + } + if (this.glareSpine) { + this.glareSpine.node.destroy(); + this.glareSpine = null; + } + + if (this.glarePrefab) { + ResManager.getInstance().releaseAsset(this.glarePrefab); + this.glarePrefab = null; + } + + if (this.glareNode) { + Tween.stopAllByTarget(this.glareNode); + } + + this.info = null; + } + + private getGlareNode() { + if (this.glareNode) { + return this.glareNode; + } + const root = this.skeleton.node.parent; + if (!root) { + console.error("没有找到根节点"); + return null; + } + this.glareNode = new Node(GLARE_NODE_NAME); + this.glareNode.setParent(root); + this.glareNode.setPosition(GLARE_DEFAULT_POSITION); + this.glareNode.setSiblingIndex(0); + return this.glareNode; + } +} diff --git a/assets/games/scripts/pets/GlarePart.ts.meta b/assets/games/scripts/pets/GlarePart.ts.meta new file mode 100644 index 0000000..7447837 --- /dev/null +++ b/assets/games/scripts/pets/GlarePart.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "f5f29e43-e981-42ee-96c5-b993931e25e4", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/GlassesPart.ts b/assets/games/scripts/pets/GlassesPart.ts new file mode 100644 index 0000000..3bbb928 --- /dev/null +++ b/assets/games/scripts/pets/GlassesPart.ts @@ -0,0 +1,9 @@ +import { BasePart } from "./BasePart"; + +export class GlassesPart extends BasePart { + protected setSocketZIndex(): void { + if (this.socketNode) { + this.socketNode.setSiblingIndex(this.socketNode.parent.children.length); + } + } +} diff --git a/assets/games/scripts/pets/GlassesPart.ts.meta b/assets/games/scripts/pets/GlassesPart.ts.meta new file mode 100644 index 0000000..9d9921e --- /dev/null +++ b/assets/games/scripts/pets/GlassesPart.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "86abc774-d404-4392-b642-463b5e5470dc", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/PetManager.ts b/assets/games/scripts/pets/PetManager.ts new file mode 100644 index 0000000..d7d24da --- /dev/null +++ b/assets/games/scripts/pets/PetManager.ts @@ -0,0 +1,55 @@ +import ResManager from "@max-studio/core/res/ResManager"; +import { Singleton } from "@max-studio/core/Singleton"; +import { instantiate, Prefab } from "cc"; +import { BasePet } from "./BasePet"; +import { releaseDressSocketNode } from "./PetUtils"; + +export class PetManager extends Singleton { + private petPrefabCache: Map = new Map(); + + public async getPet(name: string): Promise { + let asset: Prefab = null; + if (this.petPrefabCache.has(name)) { + asset = this.petPrefabCache.get(name); + if (asset == null) { + console.error(`宠物预制体缓存为空 ${name}`); + return null; + } + asset.addRef(); + } else { + const loadInfo = await ResManager.getInstance().loadAsset({ + bundle: "pet-spine", + path: name, + type: Prefab, + }); + if (loadInfo.err) { + console.error(`加载宠物预制体失败 ${name}`, loadInfo.err); + return null; + } + asset = loadInfo.asset; + this.petPrefabCache.set(name, asset); + } + const basePet = instantiate(asset).getOrAddComponent(BasePet); + basePet.setInfo({ name: name }); + return basePet; + } + + public releasePet(pet: BasePet) { + const petName = pet.getInfo().name; + pet.takeOff(); + pet.node.removeFromParent(); + pet.node.destroy(); + if (this.petPrefabCache.has(petName)) { + const prefab = this.petPrefabCache.get(petName); + ResManager.getInstance().releaseAsset(prefab); + if (prefab.refCount == 0) { + this.petPrefabCache.delete(petName); + console.log(`释放宠物预制体成功 ${petName}`); + } + } + } + + protected onRelease(): void { + releaseDressSocketNode(); + } +} diff --git a/assets/games/scripts/pets/PetManager.ts.meta b/assets/games/scripts/pets/PetManager.ts.meta new file mode 100644 index 0000000..ca40640 --- /dev/null +++ b/assets/games/scripts/pets/PetManager.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "e9aeecff-fbae-4e76-8620-bb0f5664ad62", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/PetUtils.ts b/assets/games/scripts/pets/PetUtils.ts new file mode 100644 index 0000000..4a2e303 --- /dev/null +++ b/assets/games/scripts/pets/PetUtils.ts @@ -0,0 +1,29 @@ +import ResManager from "@max-studio/core/res/ResManager"; +import { Prefab } from "cc"; + +const DRESS_SOCKET_NODE_PATH = "prefabs/pet/DressSocketNode"; +let socketPrefab: Prefab = null; + +export async function loadDressSocketNode(): Promise { + if (socketPrefab != null) { + return socketPrefab; + } + const loadInfo = await ResManager.getInstance().loadAsset({ + bundle: "games", + path: DRESS_SOCKET_NODE_PATH, + type: Prefab, + }); + if (loadInfo.err) { + console.error(`加载 DressSocketNode 失败: ${loadInfo.err}`); + return null; + } + socketPrefab = loadInfo.asset; + return socketPrefab; +} + +export function releaseDressSocketNode() { + if (socketPrefab != null) { + ResManager.getInstance().releaseAsset(socketPrefab); + socketPrefab = null; + } +} diff --git a/assets/games/scripts/pets/PetUtils.ts.meta b/assets/games/scripts/pets/PetUtils.ts.meta new file mode 100644 index 0000000..ab4b602 --- /dev/null +++ b/assets/games/scripts/pets/PetUtils.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "ccf9a987-4dc8-4993-856e-b9ea38c19731", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/Types.ts b/assets/games/scripts/pets/Types.ts new file mode 100644 index 0000000..b98e3c3 --- /dev/null +++ b/assets/games/scripts/pets/Types.ts @@ -0,0 +1,125 @@ +export interface PetInfo { + name: string; + petId?: string; +} + +export interface IDressInfo { + /** + * 装扮部位 + */ + type: DRESS_PART; + sourceLocationType: DRESS_SOURCE_TYPE; + sourceName: string; + /** + * 套装信息 + */ + dressMap?: Map; +} + +export enum DRESS_PART { + /** + * 套装 + */ + SUIT = 0, + + /** + * 背包 + */ + BAG = 1, + + /** + * 帽子 + */ + HAT = 2, + + /** + * 眼镜 + */ + GLASSES = 3, + + /** + * 附件 + */ + ACCESS = 4, + + /** + * 炫光 + */ + GLARE = 5, + + /** + * 所有 + */ + ALL = 6, +} + +export enum DRESS_SOURCE_TYPE { + NONE = 0, + + /** + * 槽位 + */ + SLOT = 1, + + /** + * 挂点静态图 + */ + SOCKET_TEX = 2, + + /** + * 挂点动画 + */ + SOCKET_SPINE = 3, + + /** + * 挂点静态图-脸 + */ + SOCKET_TEX_FACE = 4, + + /** + * 挂点动画-脸 + */ + SOCKET_SPINE_FACE = 5, +} + +export const SPINE_SLOT: Record = { + [DRESS_PART.BAG]: "glasses/bag", + [DRESS_PART.HAT]: "glasses/zs_hat_01", + [DRESS_PART.GLASSES]: "glasses/zs_glass_01", + [DRESS_PART.ACCESS]: "glasses/zs_hdi_01", +}; + +export const SPINE_SOCKET: Record = { + [DRESS_PART.BAG]: "Bag", + [DRESS_PART.HAT]: "Hat", + [DRESS_PART.GLASSES]: "Glasses", + [DRESS_PART.ACCESS]: "ZS", +}; + +export enum PET_ANIM_NAME { + IDLE = "idle", + HAPPY = "happy", + SLEEP = "sleep", + VERTIGO = "vertigo", + EAT = "eat", + MOTOU = "motou", + RUN = "run", + WALK = "walk", + PLAY = "hudong_hudie", + ANGRY = "angry", +} + +export const PET_BODY_FACE_ANIM_MAP: Record = { + [PET_ANIM_NAME.IDLE]: PET_ANIM_NAME.IDLE, + [PET_ANIM_NAME.HAPPY]: PET_ANIM_NAME.HAPPY, + [PET_ANIM_NAME.SLEEP]: PET_ANIM_NAME.SLEEP, + [PET_ANIM_NAME.VERTIGO]: PET_ANIM_NAME.VERTIGO, + [PET_ANIM_NAME.EAT]: PET_ANIM_NAME.HAPPY, + [PET_ANIM_NAME.MOTOU]: PET_ANIM_NAME.MOTOU, + [PET_ANIM_NAME.RUN]: PET_ANIM_NAME.IDLE, + [PET_ANIM_NAME.WALK]: PET_ANIM_NAME.IDLE, + [PET_ANIM_NAME.PLAY]: PET_ANIM_NAME.HAPPY, + [PET_ANIM_NAME.ANGRY]: PET_ANIM_NAME.ANGRY, +}; + +export const COMMON_FACE_ANIM = [PET_ANIM_NAME.SLEEP, PET_ANIM_NAME.ANGRY, PET_ANIM_NAME.VERTIGO, PET_ANIM_NAME.HAPPY]; diff --git a/assets/games/scripts/pets/Types.ts.meta b/assets/games/scripts/pets/Types.ts.meta new file mode 100644 index 0000000..5a80598 --- /dev/null +++ b/assets/games/scripts/pets/Types.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "25f7a591-83b6-4490-9f3f-bc18d0dfbf76", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/pets/index.ts b/assets/games/scripts/pets/index.ts new file mode 100644 index 0000000..94d364d --- /dev/null +++ b/assets/games/scripts/pets/index.ts @@ -0,0 +1,3 @@ +// import BasePet from "./BasePet"; +export { PetManager } from "./PetManager"; +export { BasePet } from "./BasePet"; diff --git a/assets/games/scripts/pets/index.ts.meta b/assets/games/scripts/pets/index.ts.meta new file mode 100644 index 0000000..8acd051 --- /dev/null +++ b/assets/games/scripts/pets/index.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "d269dbc8-fcc2-48c2-8f83-4c35dcb4a760", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/games/scripts/uis/CommonToast.ts b/assets/games/scripts/uis/CommonToast.ts index b4eb3d3..96ea661 100644 --- a/assets/games/scripts/uis/CommonToast.ts +++ b/assets/games/scripts/uis/CommonToast.ts @@ -1,9 +1,9 @@ import BaseToast from "@max-studio/core/ui/BaseToast"; import { uiConfig, UIType } from "@max-studio/core/ui/UIDecorator"; import UIManager from "@max-studio/core/ui/UIManager"; -import { SpriteAtlas, tween, Vec3, UITransform } from "cc"; +import { SpriteAtlas, tween, Vec3 } from "cc"; import { RichText } from "cc"; -import { _decorator, Component, Node } from "cc"; +import { _decorator, Node } from "cc"; const { ccclass, property } = _decorator; @uiConfig({ diff --git a/assets/games/scripts/uis/MainUI.ts b/assets/games/scripts/uis/MainUI.ts index 5792707..d30eb54 100644 --- a/assets/games/scripts/uis/MainUI.ts +++ b/assets/games/scripts/uis/MainUI.ts @@ -1,14 +1,10 @@ -import { _decorator } from "cc"; +import { _decorator, SpriteFrame } from "cc"; import BaseLayer from "@max-studio/core/ui/BaseLayer"; -import { uiConfig, UIType } from "@max-studio/core/ui/UIDecorator"; -import UIManager from "@max-studio/core/ui/UIManager"; -import { CommonDialogBox } from "./CommonDialogBox"; -import { CommonToast } from "./CommonToast"; -import { ResManager } from "@max-studio/core/res/ResManager"; -import { SpriteAtlas } from "cc"; +import { uiConfig } from "@max-studio/core/ui/UIDecorator"; const { ccclass, property, menu } = _decorator; +const globalSpriteFrame: SpriteFrame | null = null; // 全局变量 @ccclass("MainUI") @uiConfig({ @@ -17,6 +13,4 @@ const { ccclass, property, menu } = _decorator; isCache: false, }) @menu("max/ui/MainUI") -export class MainUI extends BaseLayer { - async onShow(...args: any[]) {} -} +export class MainUI extends BaseLayer {} diff --git a/assets/games/scripts/uis/ShopUI.ts b/assets/games/scripts/uis/ShopUI.ts index 5174ca4..89631a4 100644 --- a/assets/games/scripts/uis/ShopUI.ts +++ b/assets/games/scripts/uis/ShopUI.ts @@ -17,7 +17,7 @@ const { ccclass, property, menu } = _decorator; export class ShopUI extends BaseLayer { protected onLoad(): void { // ProtoDefinitions.pkg1.User - let user = new ProtoDefinitions.pkg1.User(); + const user = new ProtoDefinitions.pkg1.User(); console.log(user, ProtoDefinitions.pkg1.User.encode(user)); } } diff --git a/assets/hall/scripts/GameEntry.ts b/assets/hall/scripts/GameEntry.ts index 46a8a45..3bab9dc 100644 --- a/assets/hall/scripts/GameEntry.ts +++ b/assets/hall/scripts/GameEntry.ts @@ -1,16 +1,17 @@ -/* eslint-disable no-console */ -import { _decorator, Component, profiler } from "cc"; +import { _decorator, Component } from "cc"; import { SingletonRegistry } from "@max-studio/core/Singleton"; import UIManager from "@max-studio/core/ui/UIManager"; -import { ResManager } from "@max-studio/core/res/ResManager"; +import LogUtils from "@max-studio/core/utils/LogUtils"; +// import { ResManager } from "@max-studio/core/res/ResManager"; const { ccclass, property } = _decorator; @ccclass("GameEntry") export class GameEntry extends Component { protected async onLoad() { - await ResManager.getInstance().loadLocalBundle("games"); + // await ResManager.getInstance().loadLocalBundle("games"); + LogUtils.log("GameEntry onLoad"); await SingletonRegistry.initializeAutoInstances(); void UIManager.getInstance().openUI("MainUI"); } diff --git a/assets/loadable/dress-spine.meta b/assets/loadable/dress-spine.meta new file mode 100644 index 0000000..575f40f --- /dev/null +++ b/assets/loadable/dress-spine.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "01fff515-2b81-4c4f-8d5b-2c6c577d4dec", + "files": [], + "subMetas": {}, + "userData": { + "isBundle": true + } +} diff --git a/assets/loadable/dress-spine/DressGlare.meta b/assets/loadable/dress-spine/DressGlare.meta new file mode 100644 index 0000000..ed7ed80 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "4c8f25b6-4042-440e-b34c-7d32cd19f34a", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressGlare/qingshu.prefab b/assets/loadable/dress-spine/DressGlare/qingshu.prefab new file mode 100644 index 0000000..86911eb --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/qingshu.prefab @@ -0,0 +1,146 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "qingshu", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "qingshu", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.065909 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6dCCNQF+hBT7kv4BnurSF+" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "85836faf-542d-406a-bd77-5324821f4e4b", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9d50LdJU9L06z1wdXDPtyn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47/YWMddlM96xgkpMzZgFL", + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/qingshu.prefab.meta b/assets/loadable/dress-spine/DressGlare/qingshu.prefab.meta new file mode 100644 index 0000000..395db7d --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/qingshu.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "a2c4dc52-a5c5-4afa-bcef-72e455fd4af7", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "qingshu" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/tanghulu.prefab b/assets/loadable/dress-spine/DressGlare/tanghulu.prefab new file mode 100644 index 0000000..c0908b5 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/tanghulu.prefab @@ -0,0 +1,146 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "tanghulu", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "tanghulu", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.065909 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "6731183c-837f-46f4-9abd-c582f638dd8a", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/tanghulu.prefab.meta b/assets/loadable/dress-spine/DressGlare/tanghulu.prefab.meta new file mode 100644 index 0000000..de54574 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/tanghulu.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "4b1e784e-6165-4fb7-9b39-4c1e96355487", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "tanghulu" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20525.prefab b/assets/loadable/dress-spine/DressGlare/wing_20525.prefab new file mode 100644 index 0000000..22311dc --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20525.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20525", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20525", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 271.00018310546875, + "height": 318.0005798339844 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5289935940155858, + "y": 0.12298568756985802 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "e9b4e6b7-6234-4639-a751-1c133d276758", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20525.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20525.prefab.meta new file mode 100644 index 0000000..2b0904c --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20525.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "e0c131e9-d89d-474a-95d0-5bac601c15e6", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20525" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20530.prefab b/assets/loadable/dress-spine/DressGlare/wing_20530.prefab new file mode 100644 index 0000000..56b2281 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20530.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20530", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20530", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 354.00006103515625, + "height": 328.00006103515625 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.6534400287451398, + "y": 0.06201947616586896 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "55858a9c-4b83-44d5-ad03-6bfd9535c0aa", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20530.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20530.prefab.meta new file mode 100644 index 0000000..bc111fe --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20530.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "0cd515dd-f0d4-488b-97bf-d4891717564c", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20530" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20535.prefab b/assets/loadable/dress-spine/DressGlare/wing_20535.prefab new file mode 100644 index 0000000..c92efdd --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20535.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20535", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20535", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 227.34063720703125, + "height": 298.5545349121094 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.8504586483545603, + "y": 0.0564488167526744 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "e0ed15c4-6a0c-4fee-8cce-5ed5c30558cf", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20535.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20535.prefab.meta new file mode 100644 index 0000000..35a9653 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20535.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "86e70802-060c-4f5e-a5d8-540c40b6655c", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20535" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20540.prefab b/assets/loadable/dress-spine/DressGlare/wing_20540.prefab new file mode 100644 index 0000000..d844788 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20540.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20540", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20540", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 136.00001525878906, + "height": 148 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5389241567584592, + "y": 0.3584182326858108 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "d0008149-acc8-43dd-bbad-46b69c91b322", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "idle", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20540.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20540.prefab.meta new file mode 100644 index 0000000..a5cbfdb --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20540.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "e2e2adc9-6743-4f31-8b34-060a7a7042fb", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20540" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20545.prefab b/assets/loadable/dress-spine/DressGlare/wing_20545.prefab new file mode 100644 index 0000000..99a2c31 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20545.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20545", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20545", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 180.03170776367188, + "height": 193.02955627441406 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.48493095512180384, + "y": 0.6483273829215475 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "872840d5-ad04-4e91-8d55-2d82e1378c21", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20545.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20545.prefab.meta new file mode 100644 index 0000000..564a589 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20545.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "32b98e3a-0605-414a-b81d-cedb4a3961a1", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20545" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20550.prefab b/assets/loadable/dress-spine/DressGlare/wing_20550.prefab new file mode 100644 index 0000000..6af2004 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20550.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20550", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20550", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 207, + "height": 263 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5630527441052423, + "y": 0.10309525406405953 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "0a5300ef-8bf3-4a0c-ac9a-d6f1c55e3b79", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20550.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20550.prefab.meta new file mode 100644 index 0000000..1ca7ee5 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20550.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "3f5400cb-0736-494b-82d1-0b7cc5d2c19a", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20550" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20555.prefab b/assets/loadable/dress-spine/DressGlare/wing_20555.prefab new file mode 100644 index 0000000..91572c1 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20555.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20555", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20555", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 345.00006103515625, + "height": 255.77902221679688 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.543926684583283, + "y": 0.43865878322712754 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "04337f7c-8ad4-47cd-aef8-3056964395b3", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20555.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20555.prefab.meta new file mode 100644 index 0000000..87b7307 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20555.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "1d0e6cd9-f8cb-4088-9627-e948184bdd6a", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20555" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20560.prefab b/assets/loadable/dress-spine/DressGlare/wing_20560.prefab new file mode 100644 index 0000000..62bda1b --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20560.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20560", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20560", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70.00001525878906, + "height": 198.99996948242188 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.6470417247136308, + "y": 0.0033598047166074384 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "64ae9575-87b3-4c11-bff6-78a6fc24610f", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20560.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20560.prefab.meta new file mode 100644 index 0000000..26bb237 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20560.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "18cd1dd5-bd33-4768-8a00-0d460822d494", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20560" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20565.prefab b/assets/loadable/dress-spine/DressGlare/wing_20565.prefab new file mode 100644 index 0000000..8a65811 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20565.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20565", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20565", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 284.00006103515625, + "height": 282.8384094238281 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.4940037807402746, + "y": 0.1981014963343418 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "cfc5147c-b91e-4678-8305-a564f6f04ba0", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20565.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20565.prefab.meta new file mode 100644 index 0000000..b1dc772 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20565.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "0129a258-0dee-44b7-9738-51d87aa66b7f", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20565" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20570.prefab b/assets/loadable/dress-spine/DressGlare/wing_20570.prefab new file mode 100644 index 0000000..cc09e6e --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20570.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20570", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20570", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 142.8177947998047 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5425794850225034, + "y": 0.01483735014354616 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "010a1dea-c45b-467b-9158-b2cf8d89de4b", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20570.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20570.prefab.meta new file mode 100644 index 0000000..e8ad26c --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20570.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "3168fd3d-c563-4748-847c-9f867379dd28", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20570" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20575.prefab b/assets/loadable/dress-spine/DressGlare/wing_20575.prefab new file mode 100644 index 0000000..3844dbf --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20575.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20575", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20575", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 285.5130310058594, + "height": 253.36717224121094 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.653816163872877, + "y": 0.2638453360503198 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "86b2db4c-316e-4f8c-8386-b94f62cd30aa", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "idle", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20575.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20575.prefab.meta new file mode 100644 index 0000000..5c60f5a --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20575.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "0e631ad3-bc27-4dd6-8dda-30444d7590d9", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20575" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20580.prefab b/assets/loadable/dress-spine/DressGlare/wing_20580.prefab new file mode 100644 index 0000000..04207c1 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20580.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20580", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20580", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 369.5897216796875, + "height": 314.50653076171875 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5481384420210993, + "y": 0.18727841253669067 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "e0be5b5a-2c00-43ce-88bd-4d47a9f2f0a9", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20580.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20580.prefab.meta new file mode 100644 index 0000000..54ce3e7 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20580.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "fe5214ae-ba3a-4a07-95d7-a125e4b0bf0f", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20580" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/wing_20585.prefab b/assets/loadable/dress-spine/DressGlare/wing_20585.prefab new file mode 100644 index 0000000..15e3978 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20585.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "wing_20585", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "wing_20585", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312.00006103515625, + "height": 341 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5380243569350889, + "y": 0.20604828865297378 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53d5kpD3JD9KTcAiXTyofZ" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "f236addc-e498-412a-949d-a261eb410e96", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6b7w7KaLdDeIra1jxeO4YW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "851s6A7axM15f6QasHbOiL", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/wing_20585.prefab.meta b/assets/loadable/dress-spine/DressGlare/wing_20585.prefab.meta new file mode 100644 index 0000000..1f775ae --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/wing_20585.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "cb3b91e6-890d-47ce-96fa-56ea3c7135fe", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "wing_20585" + } +} diff --git a/assets/loadable/dress-spine/DressGlare/yanyuedao.prefab b/assets/loadable/dress-spine/DressGlare/yanyuedao.prefab new file mode 100644 index 0000000..7c25361 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/yanyuedao.prefab @@ -0,0 +1,147 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "yanyuedao", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "yanyuedao", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 6 + }, + "_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__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 3 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.065909 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3139bAYx9Bf5g7Yo8ENIe4" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "286f1f73-4cf2-4bc0-8035-ddc147dd21a0", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "idle", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "59P9cFOFNA1KDzI21nblSi" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01SUH/wltB46irGFM5go0B", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlare/yanyuedao.prefab.meta b/assets/loadable/dress-spine/DressGlare/yanyuedao.prefab.meta new file mode 100644 index 0000000..c104927 --- /dev/null +++ b/assets/loadable/dress-spine/DressGlare/yanyuedao.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "8173ecc4-d3a3-401f-8edc-871c8282e25e", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "yanyuedao" + } +} diff --git a/assets/loadable/dress-spine/DressGlareNode.prefab b/assets/loadable/dress-spine/DressGlareNode.prefab new file mode 100644 index 0000000..7439bfa --- /dev/null +++ b/assets/loadable/dress-spine/DressGlareNode.prefab @@ -0,0 +1,281 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "DressGlareNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "DressGlareNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 8 + }, + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 12 + }, + "_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": "sp", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 7 + }, + "_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__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.065908535599485 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e4k0ZJZ+ZP1pdjaXKsIsMq" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": null, + "defaultSkin": "", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64O5Yu6nNGhK8eG2ZGH+RH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "74soPwdX9L9bpej8KWCxOK", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 9 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aaaWd3sotEbJuZoi9tNGUI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 11 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "829bU5W1hIyqHFCiY3Pzpy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3R8XqWlJHQ74lKjsw7RdZ", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressGlareNode.prefab.meta b/assets/loadable/dress-spine/DressGlareNode.prefab.meta new file mode 100644 index 0000000..62d4a7e --- /dev/null +++ b/assets/loadable/dress-spine/DressGlareNode.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "3ba6771c-92ea-4656-88b4-baff7d40e9a9", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "DressGlareNode" + } +} diff --git a/assets/loadable/dress-spine/DressSocketNode.prefab b/assets/loadable/dress-spine/DressSocketNode.prefab new file mode 100644 index 0000000..d627bda --- /dev/null +++ b/assets/loadable/dress-spine/DressSocketNode.prefab @@ -0,0 +1,372 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "DressSocketNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "DressSocketNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 8 + } + ], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 16 + }, + "_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": "nodeTexture", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 7 + }, + "_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__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d5vgRqi61GY43Asa6Qv4ax" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 2, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "29I3tLV+NM07au0NCC08qj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "147PbRaOBIrpBHx8uBXKTf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "nodeSpine", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 13 + }, + "_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__": 8 + }, + "_enabled": true, + "__prefab": { + "__id__": 10 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.6022198305928649 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "afu6QTVkhEvZM/JIqGEiBB" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 8 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": null, + "defaultSkin": "", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": -1, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dd1JJBi4VNnI4oHWefEQGy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72v3+Z2atCupq60ri3M03C", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 15 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "67cvXc09ZBwKt9LGRHeb16" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c46/YsCPVOJYA4mWEpNYRx", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/loadable/dress-spine/DressSocketNode.prefab.meta b/assets/loadable/dress-spine/DressSocketNode.prefab.meta new file mode 100644 index 0000000..42514c0 --- /dev/null +++ b/assets/loadable/dress-spine/DressSocketNode.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "173ed391-5e4a-4a7f-ac3b-ad9d47234ada", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "DressSocketNode" + } +} diff --git a/assets/loadable/dress-spine/DressSpine.meta b/assets/loadable/dress-spine/DressSpine.meta new file mode 100644 index 0000000..95c20b6 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "83d11dab-5e29-4b0f-bf8c-81f24f043e1c", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/Bag.meta b/assets/loadable/dress-spine/DressSpine/Bag.meta new file mode 100644 index 0000000..f8a262b --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Bag.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "07533ada-9b00-4ad8-a869-d0946a81fce2", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/Bag/Bag.atlas b/assets/loadable/dress-spine/DressSpine/Bag/Bag.atlas new file mode 100644 index 0000000..9834bfc --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Bag/Bag.atlas @@ -0,0 +1,13 @@ + +Bag.png +size: 76,74 +format: RGBA8888 +filter: Linear,Linear +repeat: none +glasses/bag + rotate: false + xy: 2, 2 + size: 72, 70 + orig: 72, 70 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/Bag/Bag.atlas.meta b/assets/loadable/dress-spine/DressSpine/Bag/Bag.atlas.meta new file mode 100644 index 0000000..3de30a6 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Bag/Bag.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "a336c976-7c6d-4179-a323-27a2d8e6a35e", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/Bag/Bag.png b/assets/loadable/dress-spine/DressSpine/Bag/Bag.png new file mode 100644 index 0000000..d09082a Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/Bag/Bag.png differ diff --git a/assets/loadable/dress-spine/DressSpine/Bag/Bag.png.meta b/assets/loadable/dress-spine/DressSpine/Bag/Bag.png.meta new file mode 100644 index 0000000..ed43537 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Bag/Bag.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1927c6ba-6646-42bb-b00b-d8e14752bce4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1927c6ba-6646-42bb-b00b-d8e14752bce4@6c48a", + "displayName": "Bag", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1927c6ba-6646-42bb-b00b-d8e14752bce4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1927c6ba-6646-42bb-b00b-d8e14752bce4@f9941", + "displayName": "Bag", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 70, + "height": 68, + "rawWidth": 76, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -35, + -34, + 0, + 35, + -34, + 0, + -35, + 34, + 0, + 35, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 71, + 73, + 71, + 3, + 3, + 73, + 3 + ], + "nuv": [ + 0.039473684210526314, + 0.04054054054054054, + 0.9605263157894737, + 0.04054054054054054, + 0.039473684210526314, + 0.9594594594594594, + 0.9605263157894737, + 0.9594594594594594 + ], + "minPos": [ + -35, + -34, + 0 + ], + "maxPos": [ + 35, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1927c6ba-6646-42bb-b00b-d8e14752bce4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1927c6ba-6646-42bb-b00b-d8e14752bce4@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/Bag/Bag.skel b/assets/loadable/dress-spine/DressSpine/Bag/Bag.skel new file mode 100644 index 0000000..b5fa569 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/Bag/Bag.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/Bag/Bag.skel.meta b/assets/loadable/dress-spine/DressSpine/Bag/Bag.skel.meta new file mode 100644 index 0000000..0f7b352 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Bag/Bag.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "e94e852d-0474-4e2f-a2c4-1dfca5ee9809", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "a336c976-7c6d-4179-a323-27a2d8e6a35e" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/Hat.meta b/assets/loadable/dress-spine/DressSpine/Hat.meta new file mode 100644 index 0000000..0f464a0 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Hat.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "bb2d4840-f31d-4483-9f59-356f776bd211", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/Hat/Hat.atlas b/assets/loadable/dress-spine/DressSpine/Hat/Hat.atlas new file mode 100644 index 0000000..77bdeac --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Hat/Hat.atlas @@ -0,0 +1,13 @@ + +Hat.png +size: 121,91 +format: RGBA8888 +filter: Linear,Linear +repeat: none +glasses/zs_hat_01 + rotate: false + xy: 2, 2 + size: 117, 87 + orig: 117, 87 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/Hat/Hat.atlas.meta b/assets/loadable/dress-spine/DressSpine/Hat/Hat.atlas.meta new file mode 100644 index 0000000..c6cae1a --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Hat/Hat.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "86fdd131-0078-437b-b352-b8fa812b5ab1", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/Hat/Hat.png b/assets/loadable/dress-spine/DressSpine/Hat/Hat.png new file mode 100644 index 0000000..2838782 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/Hat/Hat.png differ diff --git a/assets/loadable/dress-spine/DressSpine/Hat/Hat.png.meta b/assets/loadable/dress-spine/DressSpine/Hat/Hat.png.meta new file mode 100644 index 0000000..c7991d9 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Hat/Hat.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6a0ea5f3-6a29-4f22-aa97-ea75dadb9709", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6a0ea5f3-6a29-4f22-aa97-ea75dadb9709@6c48a", + "displayName": "Hat", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6a0ea5f3-6a29-4f22-aa97-ea75dadb9709", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6a0ea5f3-6a29-4f22-aa97-ea75dadb9709@f9941", + "displayName": "Hat", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 115, + "height": 85, + "rawWidth": 121, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -57.5, + -42.5, + 0, + 57.5, + -42.5, + 0, + -57.5, + 42.5, + 0, + 57.5, + 42.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 88, + 118, + 88, + 3, + 3, + 118, + 3 + ], + "nuv": [ + 0.024793388429752067, + 0.03296703296703297, + 0.9752066115702479, + 0.03296703296703297, + 0.024793388429752067, + 0.967032967032967, + 0.9752066115702479, + 0.967032967032967 + ], + "minPos": [ + -57.5, + -42.5, + 0 + ], + "maxPos": [ + 57.5, + 42.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6a0ea5f3-6a29-4f22-aa97-ea75dadb9709@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6a0ea5f3-6a29-4f22-aa97-ea75dadb9709@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/Hat/Hat.skel b/assets/loadable/dress-spine/DressSpine/Hat/Hat.skel new file mode 100644 index 0000000..1c1db30 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/Hat/Hat.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/Hat/Hat.skel.meta b/assets/loadable/dress-spine/DressSpine/Hat/Hat.skel.meta new file mode 100644 index 0000000..667924e --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/Hat/Hat.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "dd2c3a43-9fc5-4e55-be86-b1dd53fe85ee", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "86fdd131-0078-437b-b352-b8fa812b5ab1" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511.meta b/assets/loadable/dress-spine/DressSpine/bag_20511.meta new file mode 100644 index 0000000..63b93b1 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20511.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d07a776c-1011-4eb8-ab33-04264fa9f81a", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.atlas b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.atlas new file mode 100644 index 0000000..edc6ed0 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.atlas @@ -0,0 +1,188 @@ + +bag_20511.png +size: 1022,807 +format: RGBA8888 +filter: Linear,Linear +repeat: none +GY_bag + rotate: true + xy: 5, 689 + size: 116, 127 + orig: 116, 127 + offset: 0, 0 + index: -1 +glasses/bag + rotate: false + xy: 2, 804 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +img_fire5_000 + rotate: false + xy: 134, 646 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_001 + rotate: false + xy: 338, 646 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_002 + rotate: false + xy: 542, 646 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_003 + rotate: false + xy: 746, 646 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_004 + rotate: false + xy: 2, 485 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_005 + rotate: false + xy: 206, 485 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_006 + rotate: false + xy: 410, 485 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_007 + rotate: false + xy: 614, 485 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_008 + rotate: false + xy: 818, 485 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_009 + rotate: false + xy: 2, 324 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_010 + rotate: false + xy: 206, 324 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_011 + rotate: false + xy: 410, 324 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_012 + rotate: false + xy: 614, 324 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_013 + rotate: false + xy: 818, 324 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_014 + rotate: false + xy: 2, 163 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_015 + rotate: false + xy: 206, 163 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_016 + rotate: false + xy: 410, 163 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_017 + rotate: false + xy: 614, 163 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_018 + rotate: false + xy: 818, 163 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_019 + rotate: false + xy: 2, 2 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_020 + rotate: false + xy: 206, 2 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_021 + rotate: false + xy: 410, 2 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_022 + rotate: false + xy: 614, 2 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 +img_fire5_023 + rotate: false + xy: 818, 2 + size: 202, 159 + orig: 202, 159 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.atlas.meta new file mode 100644 index 0000000..0a77897 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "486b9042-f335-4463-9b0c-fdf158cc6fef", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.png b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.png new file mode 100644 index 0000000..c0abda4 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.png.meta new file mode 100644 index 0000000..80e24b6 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c374e650-bf9b-4bf6-9257-e8780eccabc7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c374e650-bf9b-4bf6-9257-e8780eccabc7@6c48a", + "displayName": "bag_20511", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c374e650-bf9b-4bf6-9257-e8780eccabc7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c374e650-bf9b-4bf6-9257-e8780eccabc7@f9941", + "displayName": "bag_20511", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -14, + "offsetY": -16.5, + "trimX": 2, + "trimY": 35, + "width": 990, + "height": 770, + "rawWidth": 1022, + "rawHeight": 807, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -495, + -385, + 0, + 495, + -385, + 0, + -495, + 385, + 0, + 495, + 385, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 772, + 992, + 772, + 2, + 2, + 992, + 2 + ], + "nuv": [ + 0.0019569471624266144, + 0.0024783147459727386, + 0.9706457925636007, + 0.0024783147459727386, + 0.0019569471624266144, + 0.9566294919454771, + 0.9706457925636007, + 0.9566294919454771 + ], + "minPos": [ + -495, + -385, + 0 + ], + "maxPos": [ + 495, + 385, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c374e650-bf9b-4bf6-9257-e8780eccabc7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c374e650-bf9b-4bf6-9257-e8780eccabc7@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.skel b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.skel new file mode 100644 index 0000000..97da2d4 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.skel.meta new file mode 100644 index 0000000..3fd462f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20511/bag_20511.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "33b7f891-1dc3-4c09-a9c0-2bcebf4d8ae8", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "486b9042-f335-4463-9b0c-fdf158cc6fef" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521.meta b/assets/loadable/dress-spine/DressSpine/bag_20521.meta new file mode 100644 index 0000000..0c94170 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20521.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "2b5dc19f-1f99-48c0-937b-f634baf76188", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.atlas b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.atlas new file mode 100644 index 0000000..5b805f8 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.atlas @@ -0,0 +1,139 @@ + +bag_20521.png +size: 1793,545 +format: RGBA8888 +filter: Linear,Linear +repeat: none +qingshe2_000 + rotate: false + xy: 2, 364 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_001 + rotate: false + xy: 2, 183 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_002 + rotate: false + xy: 324, 364 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_003 + rotate: false + xy: 2, 2 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_004 + rotate: false + xy: 324, 183 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_005 + rotate: false + xy: 646, 364 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_006 + rotate: false + xy: 324, 2 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_007 + rotate: false + xy: 646, 183 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_008 + rotate: false + xy: 968, 364 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_009 + rotate: false + xy: 646, 2 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_010 + rotate: false + xy: 968, 183 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_011 + rotate: false + xy: 1290, 364 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_012 + rotate: false + xy: 968, 2 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_013 + rotate: false + xy: 1290, 183 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_014 + rotate: true + xy: 1612, 223 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qingshe2_015 + rotate: false + xy: 1290, 2 + size: 320, 179 + orig: 320, 179 + offset: 0, 0 + index: -1 +qs_piaodai_01 + rotate: true + xy: 1612, 10 + size: 50, 83 + orig: 50, 83 + offset: 0, 0 + index: -1 +qs_piaodai_02 + rotate: false + xy: 1737, 137 + size: 36, 84 + orig: 36, 84 + offset: 0, 0 + index: -1 +qs_piaodai_zs + rotate: false + xy: 1612, 62 + size: 123, 159 + orig: 123, 159 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.atlas.meta new file mode 100644 index 0000000..afd7e62 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "584eb263-c475-4040-a3a0-0aba54361d4c", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.png b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.png new file mode 100644 index 0000000..bd0260e Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.png.meta new file mode 100644 index 0000000..3fc0299 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f593e470-823e-433c-8b0e-12b2197db63f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f593e470-823e-433c-8b0e-12b2197db63f@6c48a", + "displayName": "bag_20521", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f593e470-823e-433c-8b0e-12b2197db63f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f593e470-823e-433c-8b0e-12b2197db63f@f9941", + "displayName": "bag_20521", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 2, + "offsetY": -4.5, + "trimX": 6, + "trimY": 11, + "width": 1785, + "height": 532, + "rawWidth": 1793, + "rawHeight": 545, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -892.5, + -266, + 0, + 892.5, + -266, + 0, + -892.5, + 266, + 0, + 892.5, + 266, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 6, + 534, + 1791, + 534, + 6, + 2, + 1791, + 2 + ], + "nuv": [ + 0.0033463469046291134, + 0.003669724770642202, + 0.9988845510317903, + 0.003669724770642202, + 0.0033463469046291134, + 0.9798165137614679, + 0.9988845510317903, + 0.9798165137614679 + ], + "minPos": [ + -892.5, + -266, + 0 + ], + "maxPos": [ + 892.5, + 266, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f593e470-823e-433c-8b0e-12b2197db63f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f593e470-823e-433c-8b0e-12b2197db63f@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.skel b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.skel new file mode 100644 index 0000000..dc23ada Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.skel.meta new file mode 100644 index 0000000..d2799cb --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20521/bag_20521.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "93b6ded8-2a69-406f-b8de-950755390d9e", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "584eb263-c475-4040-a3a0-0aba54361d4c" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526.meta b/assets/loadable/dress-spine/DressSpine/bag_20526.meta new file mode 100644 index 0000000..af91ea8 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20526.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "53fb33b8-4a7c-4402-b6b6-5a655b344ad6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.atlas b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.atlas new file mode 100644 index 0000000..2bb9e82 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.atlas @@ -0,0 +1,27 @@ + +bag_20526.png +size: 322,133 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bs_bag_lianhua1 + rotate: true + xy: 234, 2 + size: 129, 86 + orig: 129, 86 + offset: 0, 0 + index: -1 +bs_bag_lianhua2 + rotate: true + xy: 2, 12 + size: 119, 116 + orig: 119, 116 + offset: 0, 0 + index: -1 +bs_bag_lianhua3 + rotate: false + xy: 120, 8 + size: 112, 123 + orig: 112, 123 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.atlas.meta new file mode 100644 index 0000000..e67a7f3 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "a5ee97f7-b055-4479-bb43-c088ffe48cd9", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.png b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.png new file mode 100644 index 0000000..074ae55 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.png.meta new file mode 100644 index 0000000..0ae91fc --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "33a13f14-761c-4fb7-bced-41511ec4a7ea", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "33a13f14-761c-4fb7-bced-41511ec4a7ea@6c48a", + "displayName": "bag_20526", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "33a13f14-761c-4fb7-bced-41511ec4a7ea", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "33a13f14-761c-4fb7-bced-41511ec4a7ea@f9941", + "displayName": "bag_20526", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 316, + "height": 127, + "rawWidth": 322, + "rawHeight": 133, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -158, + -63.5, + 0, + 158, + -63.5, + 0, + -158, + 63.5, + 0, + 158, + 63.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 130, + 319, + 130, + 3, + 3, + 319, + 3 + ], + "nuv": [ + 0.009316770186335404, + 0.022556390977443608, + 0.9906832298136646, + 0.022556390977443608, + 0.009316770186335404, + 0.9774436090225563, + 0.9906832298136646, + 0.9774436090225563 + ], + "minPos": [ + -158, + -63.5, + 0 + ], + "maxPos": [ + 158, + 63.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "33a13f14-761c-4fb7-bced-41511ec4a7ea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "33a13f14-761c-4fb7-bced-41511ec4a7ea@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.skel b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.skel new file mode 100644 index 0000000..a0a94ee Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.skel.meta new file mode 100644 index 0000000..a033df2 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20526/bag_20526.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "f3e553ae-4078-4f68-86cc-6669662da0bf", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "a5ee97f7-b055-4479-bb43-c088ffe48cd9" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531.meta b/assets/loadable/dress-spine/DressSpine/bag_20531.meta new file mode 100644 index 0000000..a311e4a --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20531.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "59c495b6-6c0d-4d4a-98e5-8f205c813598", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.atlas b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.atlas new file mode 100644 index 0000000..b6ca78f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.atlas @@ -0,0 +1,27 @@ + +bag_20531.png +size: 223,142 +format: RGBA8888 +filter: Linear,Linear +repeat: none +mfsn_bag_qunzi + rotate: true + xy: 2, 2 + size: 138, 83 + orig: 138, 83 + offset: 0, 0 + index: -1 +mfsn_bag_qunzi_zs + rotate: true + xy: 164, 48 + size: 92, 57 + orig: 92, 57 + offset: 0, 0 + index: -1 +mfsn_bag_xing + rotate: true + xy: 87, 6 + size: 134, 75 + orig: 134, 75 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.atlas.meta new file mode 100644 index 0000000..a41cdfc --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "437606cf-8c09-4f21-8a4f-dd48f82673b6", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.png b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.png new file mode 100644 index 0000000..50d1e76 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.png.meta new file mode 100644 index 0000000..4158d6c --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "95fb7f8a-ded3-4df0-bceb-77eb1a39465e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "95fb7f8a-ded3-4df0-bceb-77eb1a39465e@6c48a", + "displayName": "bag_20531", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "95fb7f8a-ded3-4df0-bceb-77eb1a39465e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "95fb7f8a-ded3-4df0-bceb-77eb1a39465e@f9941", + "displayName": "bag_20531", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 217, + "height": 136, + "rawWidth": 223, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -108.5, + -68, + 0, + 108.5, + -68, + 0, + -108.5, + 68, + 0, + 108.5, + 68, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 139, + 220, + 139, + 3, + 3, + 220, + 3 + ], + "nuv": [ + 0.013452914798206279, + 0.02112676056338028, + 0.9865470852017937, + 0.02112676056338028, + 0.013452914798206279, + 0.9788732394366197, + 0.9865470852017937, + 0.9788732394366197 + ], + "minPos": [ + -108.5, + -68, + 0 + ], + "maxPos": [ + 108.5, + 68, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "95fb7f8a-ded3-4df0-bceb-77eb1a39465e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "95fb7f8a-ded3-4df0-bceb-77eb1a39465e@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.skel b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.skel new file mode 100644 index 0000000..9c0b076 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.skel.meta new file mode 100644 index 0000000..26970f3 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20531/bag_20531.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "795a37ac-6861-4f22-a74d-fe6d0e6980a8", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "437606cf-8c09-4f21-8a4f-dd48f82673b6" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541.meta b/assets/loadable/dress-spine/DressSpine/bag_20541.meta new file mode 100644 index 0000000..692bcf7 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20541.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "4c984f07-9d6a-4f7f-bb39-3dc2303277eb", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.atlas b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.atlas new file mode 100644 index 0000000..5e41ec2 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.atlas @@ -0,0 +1,97 @@ + +bag_20541.png +size: 114,266 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bxgz_bag + rotate: false + xy: 2, 196 + size: 104, 68 + orig: 104, 68 + offset: 0, 0 + index: -1 +bxgz_bag_ba + rotate: false + xy: 2, 140 + size: 86, 54 + orig: 86, 54 + offset: 0, 0 + index: -1 +bxgz_bag_back + rotate: true + xy: 2, 44 + size: 94, 33 + orig: 94, 33 + offset: 0, 0 + index: -1 +bxgz_bag_hua1 + rotate: false + xy: 37, 69 + size: 41, 34 + orig: 41, 34 + offset: 0, 0 + index: -1 +bxgz_bag_hua1_geng + rotate: false + xy: 51, 4 + size: 24, 38 + orig: 24, 38 + offset: 0, 0 + index: -1 +bxgz_bag_hua2 + rotate: false + xy: 2, 2 + size: 47, 40 + orig: 47, 40 + offset: 0, 0 + index: -1 +bxgz_bag_hua2_geng + rotate: true + xy: 37, 44 + size: 23, 38 + orig: 23, 38 + offset: 0, 0 + index: -1 +bxgz_bag_hua3 + rotate: true + xy: 77, 30 + size: 37, 29 + orig: 37, 29 + offset: 0, 0 + index: -1 +bxgz_bag_hua4 + rotate: false + xy: 85, 98 + size: 25, 37 + orig: 25, 37 + offset: 0, 0 + index: -1 +bxgz_bag_hua5 + rotate: true + xy: 37, 105 + size: 33, 46 + orig: 33, 46 + offset: 0, 0 + index: -1 +bxgz_hd + rotate: true + xy: 80, 73 + size: 23, 19 + orig: 23, 19 + offset: 0, 0 + index: -1 +bxgz_hd_cb_L + rotate: false + xy: 90, 165 + size: 22, 29 + orig: 22, 29 + offset: 0, 0 + index: -1 +bxgz_hd_cb_R + rotate: false + xy: 90, 137 + size: 21, 26 + orig: 21, 26 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.atlas.meta new file mode 100644 index 0000000..09c100c --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "deb251e7-339a-4d81-999a-75c5634c54e1", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.png b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.png new file mode 100644 index 0000000..be3be02 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.png.meta new file mode 100644 index 0000000..17eac9f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "504722ac-d405-44cb-abb9-6b461d1c0fea", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "504722ac-d405-44cb-abb9-6b461d1c0fea@6c48a", + "displayName": "bag_20541", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "504722ac-d405-44cb-abb9-6b461d1c0fea", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "504722ac-d405-44cb-abb9-6b461d1c0fea@f9941", + "displayName": "bag_20541", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 3, + "trimY": 3, + "width": 108, + "height": 261, + "rawWidth": 114, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -54, + -130.5, + 0, + 54, + -130.5, + 0, + -54, + 130.5, + 0, + 54, + 130.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 263, + 111, + 263, + 3, + 2, + 111, + 2 + ], + "nuv": [ + 0.02631578947368421, + 0.007518796992481203, + 0.9736842105263158, + 0.007518796992481203, + 0.02631578947368421, + 0.9887218045112782, + 0.9736842105263158, + 0.9887218045112782 + ], + "minPos": [ + -54, + -130.5, + 0 + ], + "maxPos": [ + 54, + 130.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "504722ac-d405-44cb-abb9-6b461d1c0fea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "504722ac-d405-44cb-abb9-6b461d1c0fea@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.skel b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.skel new file mode 100644 index 0000000..943b151 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.skel.meta new file mode 100644 index 0000000..c8b89dc --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20541/bag_20541.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "242f740b-d7ba-4fa4-b28e-0e483a83948b", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "deb251e7-339a-4d81-999a-75c5634c54e1" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546.meta b/assets/loadable/dress-spine/DressSpine/bag_20546.meta new file mode 100644 index 0000000..f03cc32 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20546.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "8be3b411-0f69-4d8e-b855-10555be8487e", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.atlas b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.atlas new file mode 100644 index 0000000..bae44ac --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.atlas @@ -0,0 +1,27 @@ + +bag_20546.png +size: 210,129 +format: RGBA8888 +filter: Linear,Linear +repeat: none +jack_jz + rotate: true + xy: 2, 2 + size: 125, 94 + orig: 125, 94 + offset: 0, 0 + index: -1 +jack_kz + rotate: true + xy: 169, 84 + size: 43, 39 + orig: 43, 39 + offset: 0, 0 + index: -1 +jack_yaodai + rotate: true + xy: 98, 7 + size: 120, 69 + orig: 120, 69 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.atlas.meta new file mode 100644 index 0000000..6cb2226 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "e119afc3-58f2-4a0b-a208-a51e9d088f1c", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.png b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.png new file mode 100644 index 0000000..d9cff5d Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.png.meta new file mode 100644 index 0000000..b1901d6 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4bfe7599-b59c-4c1d-892f-ab33356e7154", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4bfe7599-b59c-4c1d-892f-ab33356e7154@6c48a", + "displayName": "bag_20546", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4bfe7599-b59c-4c1d-892f-ab33356e7154", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4bfe7599-b59c-4c1d-892f-ab33356e7154@f9941", + "displayName": "bag_20546", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 204, + "height": 123, + "rawWidth": 210, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -102, + -61.5, + 0, + 102, + -61.5, + 0, + -102, + 61.5, + 0, + 102, + 61.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 126, + 207, + 126, + 3, + 3, + 207, + 3 + ], + "nuv": [ + 0.014285714285714285, + 0.023255813953488372, + 0.9857142857142858, + 0.023255813953488372, + 0.014285714285714285, + 0.9767441860465116, + 0.9857142857142858, + 0.9767441860465116 + ], + "minPos": [ + -102, + -61.5, + 0 + ], + "maxPos": [ + 102, + 61.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4bfe7599-b59c-4c1d-892f-ab33356e7154@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4bfe7599-b59c-4c1d-892f-ab33356e7154@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.skel b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.skel new file mode 100644 index 0000000..372371c Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.skel.meta new file mode 100644 index 0000000..575e8ac --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20546/bag_20546.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "800c2e6c-d5dd-4d6a-bf72-1b9652ccee7d", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "e119afc3-58f2-4a0b-a208-a51e9d088f1c" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551.meta b/assets/loadable/dress-spine/DressSpine/bag_20551.meta new file mode 100644 index 0000000..8ea7c50 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20551.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "129a4e11-f95c-48a3-ae31-7920dc5a7871", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.atlas b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.atlas new file mode 100644 index 0000000..580f590 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.atlas @@ -0,0 +1,13 @@ + +bag_20551.png +size: 156,104 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bag_21013 + rotate: false + xy: 2, 2 + size: 152, 100 + orig: 152, 100 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.atlas.meta new file mode 100644 index 0000000..4dc5314 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "d50b0b06-d0c5-4681-92ba-8f8baeef4f69", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.png b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.png new file mode 100644 index 0000000..7e041f1 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.png.meta new file mode 100644 index 0000000..d38f55a --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "907c1e49-1e2c-4984-a26d-33bf5231ec56", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "907c1e49-1e2c-4984-a26d-33bf5231ec56@6c48a", + "displayName": "bag_20551", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "907c1e49-1e2c-4984-a26d-33bf5231ec56", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "907c1e49-1e2c-4984-a26d-33bf5231ec56@f9941", + "displayName": "bag_20551", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 152, + "height": 100, + "rawWidth": 156, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -76, + -50, + 0, + 76, + -50, + 0, + -76, + 50, + 0, + 76, + 50, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 102, + 154, + 102, + 2, + 2, + 154, + 2 + ], + "nuv": [ + 0.01282051282051282, + 0.019230769230769232, + 0.9871794871794872, + 0.019230769230769232, + 0.01282051282051282, + 0.9807692307692307, + 0.9871794871794872, + 0.9807692307692307 + ], + "minPos": [ + -76, + -50, + 0 + ], + "maxPos": [ + 76, + 50, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "907c1e49-1e2c-4984-a26d-33bf5231ec56@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "907c1e49-1e2c-4984-a26d-33bf5231ec56@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.skel b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.skel new file mode 100644 index 0000000..2ee9e52 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.skel.meta new file mode 100644 index 0000000..95cc4da --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20551/bag_20551.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "7da7ea60-c0cf-4ee7-b60e-0959d7937c5a", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "d50b0b06-d0c5-4681-92ba-8f8baeef4f69" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561.meta b/assets/loadable/dress-spine/DressSpine/bag_20561.meta new file mode 100644 index 0000000..de338a4 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20561.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a5c9233f-cc3d-40f0-8676-b3442a900aef", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.atlas b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.atlas new file mode 100644 index 0000000..f516bd0 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.atlas @@ -0,0 +1,41 @@ + +bag_20561.png +size: 354,81 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xx_bag_hdj_1 + rotate: true + xy: 157, 5 + size: 74, 67 + orig: 74, 67 + offset: 0, 0 + index: -1 +xx_bag_pd_1 + rotate: true + xy: 304, 16 + size: 22, 48 + orig: 22, 48 + offset: 0, 0 + index: -1 +xx_bag_pd_2 + rotate: true + xy: 226, 13 + size: 25, 76 + orig: 25, 76 + offset: 0, 0 + index: -1 +xx_bag_pd_3 + rotate: false + xy: 226, 40 + size: 103, 39 + orig: 103, 39 + offset: 0, 0 + index: -1 +xx_bag_san_1 + rotate: true + xy: 2, 2 + size: 77, 153 + orig: 77, 153 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.atlas.meta new file mode 100644 index 0000000..cb728c9 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "c2f7ea30-6a81-44b1-995c-9f9b889ff47d", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.png b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.png new file mode 100644 index 0000000..a5dffa1 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.png.meta new file mode 100644 index 0000000..106c811 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9ead975-2820-45a8-b440-62ee834cf641", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9ead975-2820-45a8-b440-62ee834cf641@6c48a", + "displayName": "bag_20561", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9ead975-2820-45a8-b440-62ee834cf641", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d9ead975-2820-45a8-b440-62ee834cf641@f9941", + "displayName": "bag_20561", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 348, + "height": 75, + "rawWidth": 354, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -174, + -37.5, + 0, + 174, + -37.5, + 0, + -174, + 37.5, + 0, + 174, + 37.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 78, + 351, + 78, + 3, + 3, + 351, + 3 + ], + "nuv": [ + 0.00847457627118644, + 0.037037037037037035, + 0.9915254237288136, + 0.037037037037037035, + 0.00847457627118644, + 0.9629629629629629, + 0.9915254237288136, + 0.9629629629629629 + ], + "minPos": [ + -174, + -37.5, + 0 + ], + "maxPos": [ + 174, + 37.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9ead975-2820-45a8-b440-62ee834cf641@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9ead975-2820-45a8-b440-62ee834cf641@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.skel b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.skel new file mode 100644 index 0000000..6abc361 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.skel.meta new file mode 100644 index 0000000..f611236 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20561/bag_20561.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "d56372c6-ea62-42fa-8165-6038f050ede0", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "c2f7ea30-6a81-44b1-995c-9f9b889ff47d" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571.meta b/assets/loadable/dress-spine/DressSpine/bag_20571.meta new file mode 100644 index 0000000..9cdc01e --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20571.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "192c3ab1-1c67-4b2d-aea9-1c14d69995a6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.atlas b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.atlas new file mode 100644 index 0000000..62620e4 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.atlas @@ -0,0 +1,13 @@ + +bag_20571.png +size: 130,94 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bag_21012 + rotate: false + xy: 2, 2 + size: 126, 90 + orig: 126, 90 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.atlas.meta b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.atlas.meta new file mode 100644 index 0000000..90b1bdf --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "93e2e611-cef4-4c15-919c-7113be943b3d", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.png b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.png new file mode 100644 index 0000000..6ed5ebd Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.png differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.png.meta b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.png.meta new file mode 100644 index 0000000..28af005 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "303c2e03-6d01-445d-bf28-38bce7d783a8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "303c2e03-6d01-445d-bf28-38bce7d783a8@6c48a", + "displayName": "bag_20571", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "303c2e03-6d01-445d-bf28-38bce7d783a8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "303c2e03-6d01-445d-bf28-38bce7d783a8@f9941", + "displayName": "bag_20571", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 126, + "height": 90, + "rawWidth": 130, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -63, + -45, + 0, + 63, + -45, + 0, + -63, + 45, + 0, + 63, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 92, + 128, + 92, + 2, + 2, + 128, + 2 + ], + "nuv": [ + 0.015384615384615385, + 0.02127659574468085, + 0.9846153846153847, + 0.02127659574468085, + 0.015384615384615385, + 0.9787234042553191, + 0.9846153846153847, + 0.9787234042553191 + ], + "minPos": [ + -63, + -45, + 0 + ], + "maxPos": [ + 63, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "303c2e03-6d01-445d-bf28-38bce7d783a8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "303c2e03-6d01-445d-bf28-38bce7d783a8@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.skel b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.skel new file mode 100644 index 0000000..4543cef Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.skel.meta b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.skel.meta new file mode 100644 index 0000000..f94b286 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/bag_20571/bag_20571.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "63e7cc42-715e-41b9-a5dd-331c76be0777", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "93e2e611-cef4-4c15-919c-7113be943b3d" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513.meta b/assets/loadable/dress-spine/DressSpine/eye_20513.meta new file mode 100644 index 0000000..250f0a4 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/eye_20513.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "50842fc1-3631-4128-ac9b-20d4473394de", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.atlas b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.atlas new file mode 100644 index 0000000..e623b17 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.atlas @@ -0,0 +1,20 @@ + +eye_20513.png +size: 140,57 +format: RGBA8888 +filter: Linear,Linear +repeat: none +GY_ear + rotate: false + xy: 2, 2 + size: 133, 53 + orig: 133, 53 + offset: 0, 0 + index: -1 +glasses/zs_glasses_01 + rotate: true + xy: 137, 53 + size: 2, 1 + orig: 2, 1 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.atlas.meta b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.atlas.meta new file mode 100644 index 0000000..469343d --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "f727d769-d786-41c9-8d04-c4e84313b31b", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.png b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.png new file mode 100644 index 0000000..9a64321 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.png differ diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.png.meta b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.png.meta new file mode 100644 index 0000000..f0a03cb --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5177a70a-15e9-428f-b485-836feba199ed", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5177a70a-15e9-428f-b485-836feba199ed@6c48a", + "displayName": "eye_20513", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5177a70a-15e9-428f-b485-836feba199ed", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5177a70a-15e9-428f-b485-836feba199ed@f9941", + "displayName": "eye_20513", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -0.5, + "trimX": 3, + "trimY": 3, + "width": 135, + "height": 52, + "rawWidth": 140, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67.5, + -26, + 0, + 67.5, + -26, + 0, + -67.5, + 26, + 0, + 67.5, + 26, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 54, + 138, + 54, + 3, + 2, + 138, + 2 + ], + "nuv": [ + 0.02142857142857143, + 0.03508771929824561, + 0.9857142857142858, + 0.03508771929824561, + 0.02142857142857143, + 0.9473684210526315, + 0.9857142857142858, + 0.9473684210526315 + ], + "minPos": [ + -67.5, + -26, + 0 + ], + "maxPos": [ + 67.5, + 26, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5177a70a-15e9-428f-b485-836feba199ed@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5177a70a-15e9-428f-b485-836feba199ed@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.skel b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.skel new file mode 100644 index 0000000..12bcf15 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.skel.meta b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.skel.meta new file mode 100644 index 0000000..4a5a834 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/eye_20513/eye_20513.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "f07dd0e6-466b-4328-bed6-d673e95cd391", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "f727d769-d786-41c9-8d04-c4e84313b31b" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512.meta b/assets/loadable/dress-spine/DressSpine/hat_20512.meta new file mode 100644 index 0000000..a0d2b20 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20512.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "ef3513b5-603b-4dee-b8cb-8ee6f8e8f3bb", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.atlas b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.atlas new file mode 100644 index 0000000..141ecda --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.atlas @@ -0,0 +1,20 @@ + +hat_20512.png +size: 195,166 +format: RGBA8888 +filter: Linear,Linear +repeat: none +GY_hat + rotate: true + xy: 5, 2 + size: 162, 188 + orig: 162, 188 + offset: 0, 0 + index: -1 +glasses/zs_hat_01 + rotate: false + xy: 2, 163 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.atlas.meta new file mode 100644 index 0000000..f97ba12 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "33ca95a3-ed3f-4d64-bcc1-4855ee6a7c26", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.png b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.png new file mode 100644 index 0000000..d06cc3a Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.png.meta new file mode 100644 index 0000000..532fd64 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a9dba3c-212c-447a-941a-ce532f8482e0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a9dba3c-212c-447a-941a-ce532f8482e0@6c48a", + "displayName": "hat_20512", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a9dba3c-212c-447a-941a-ce532f8482e0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9a9dba3c-212c-447a-941a-ce532f8482e0@f9941", + "displayName": "hat_20512", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": -0.5, + "trimX": 2, + "trimY": 3, + "width": 190, + "height": 161, + "rawWidth": 195, + "rawHeight": 166, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -95, + -80.5, + 0, + 95, + -80.5, + 0, + -95, + 80.5, + 0, + 95, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 163, + 192, + 163, + 2, + 2, + 192, + 2 + ], + "nuv": [ + 0.010256410256410256, + 0.012048192771084338, + 0.9846153846153847, + 0.012048192771084338, + 0.010256410256410256, + 0.9819277108433735, + 0.9846153846153847, + 0.9819277108433735 + ], + "minPos": [ + -95, + -80.5, + 0 + ], + "maxPos": [ + 95, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a9dba3c-212c-447a-941a-ce532f8482e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a9dba3c-212c-447a-941a-ce532f8482e0@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.skel b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.skel new file mode 100644 index 0000000..6767847 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.skel.meta new file mode 100644 index 0000000..ee88f10 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20512/hat_20512.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "477363dc-af20-4d38-8316-ca07a6fb204e", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "33ca95a3-ed3f-4d64-bcc1-4855ee6a7c26" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522.meta b/assets/loadable/dress-spine/DressSpine/hat_20522.meta new file mode 100644 index 0000000..6f34770 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20522.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "04effad5-d471-4fc1-bb17-9fdaa5b07ae5", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.atlas b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.atlas new file mode 100644 index 0000000..49ad368 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.atlas @@ -0,0 +1,27 @@ + +hat_20522.png +size: 267,209 +format: RGBA8888 +filter: Linear,Linear +repeat: none +qs_hat_hair + rotate: true + xy: 2, 11 + size: 196, 162 + orig: 196, 162 + offset: 0, 0 + index: -1 +qs_hat_hair1 + rotate: true + xy: 166, 89 + size: 118, 99 + orig: 118, 99 + offset: 0, 0 + index: -1 +qs_hat_hair2 + rotate: true + xy: 166, 2 + size: 85, 99 + orig: 85, 99 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.atlas.meta new file mode 100644 index 0000000..2802672 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "d9446c17-916f-4a5d-b185-34fbf381d94d", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.png b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.png new file mode 100644 index 0000000..a6dc601 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.png.meta new file mode 100644 index 0000000..bf15a5f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d4321c2b-7bc2-4d36-96ef-6ce3436902ed", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d4321c2b-7bc2-4d36-96ef-6ce3436902ed@6c48a", + "displayName": "hat_20522", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d4321c2b-7bc2-4d36-96ef-6ce3436902ed", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d4321c2b-7bc2-4d36-96ef-6ce3436902ed@f9941", + "displayName": "hat_20522", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 261, + "height": 203, + "rawWidth": 267, + "rawHeight": 209, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -130.5, + -101.5, + 0, + 130.5, + -101.5, + 0, + -130.5, + 101.5, + 0, + 130.5, + 101.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 206, + 264, + 206, + 3, + 3, + 264, + 3 + ], + "nuv": [ + 0.011235955056179775, + 0.014354066985645933, + 0.9887640449438202, + 0.014354066985645933, + 0.011235955056179775, + 0.9856459330143541, + 0.9887640449438202, + 0.9856459330143541 + ], + "minPos": [ + -130.5, + -101.5, + 0 + ], + "maxPos": [ + 130.5, + 101.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d4321c2b-7bc2-4d36-96ef-6ce3436902ed@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d4321c2b-7bc2-4d36-96ef-6ce3436902ed@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.skel b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.skel new file mode 100644 index 0000000..214d5da Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.skel.meta new file mode 100644 index 0000000..4c24973 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20522/hat_20522.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "6bfff16e-a99c-4689-9eca-39c957ebd72e", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "d9446c17-916f-4a5d-b185-34fbf381d94d" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527.meta b/assets/loadable/dress-spine/DressSpine/hat_20527.meta new file mode 100644 index 0000000..275cca9 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20527.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "ae53f376-cc02-498f-a8ff-b1bf3271813b", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.atlas b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.atlas new file mode 100644 index 0000000..d64b71d --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.atlas @@ -0,0 +1,34 @@ + +hat_20527.png +size: 415,315 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bs_hat_hair + rotate: true + xy: 237, 3 + size: 310, 176 + orig: 310, 176 + offset: 0, 0 + index: -1 +bs_hat_hair_L + rotate: true + xy: 2, 32 + size: 41, 120 + orig: 41, 120 + offset: 0, 0 + index: -1 +bs_hat_hair_R + rotate: true + xy: 2, 2 + size: 28, 119 + orig: 28, 119 + offset: 0, 0 + index: -1 +bs_hat_pijin + rotate: false + xy: 2, 75 + size: 233, 238 + orig: 233, 238 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.atlas.meta new file mode 100644 index 0000000..e2b4d71 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "393834cb-bc4c-4f7c-96e4-82abbc04ac74", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.png b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.png new file mode 100644 index 0000000..ceb76eb Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.png.meta new file mode 100644 index 0000000..1acd2f4 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "590c3748-a8f9-4b46-a05d-bd8b990dc978", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "590c3748-a8f9-4b46-a05d-bd8b990dc978@6c48a", + "displayName": "hat_20527", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "590c3748-a8f9-4b46-a05d-bd8b990dc978", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "590c3748-a8f9-4b46-a05d-bd8b990dc978@f9941", + "displayName": "hat_20527", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 409, + "height": 309, + "rawWidth": 415, + "rawHeight": 315, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -204.5, + -154.5, + 0, + 204.5, + -154.5, + 0, + -204.5, + 154.5, + 0, + 204.5, + 154.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 312, + 412, + 312, + 3, + 3, + 412, + 3 + ], + "nuv": [ + 0.007228915662650603, + 0.009523809523809525, + 0.9927710843373494, + 0.009523809523809525, + 0.007228915662650603, + 0.9904761904761905, + 0.9927710843373494, + 0.9904761904761905 + ], + "minPos": [ + -204.5, + -154.5, + 0 + ], + "maxPos": [ + 204.5, + 154.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "590c3748-a8f9-4b46-a05d-bd8b990dc978@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "590c3748-a8f9-4b46-a05d-bd8b990dc978@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.skel b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.skel new file mode 100644 index 0000000..1dd2002 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.skel.meta new file mode 100644 index 0000000..7b81bfb --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20527/hat_20527.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "98c0bf5e-710c-40cc-9d3f-f72b9e63f324", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "393834cb-bc4c-4f7c-96e4-82abbc04ac74" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532.meta b/assets/loadable/dress-spine/DressSpine/hat_20532.meta new file mode 100644 index 0000000..1aad30b --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20532.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "9d600cdc-e129-436f-bded-ec0186eabdd4", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.atlas b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.atlas new file mode 100644 index 0000000..2b53916 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.atlas @@ -0,0 +1,69 @@ + +hat_20532.png +size: 235,292 +format: RGBA8888 +filter: Linear,Linear +repeat: none +mfsn_hair1 + rotate: false + xy: 169, 2 + size: 64, 85 + orig: 64, 85 + offset: 0, 0 + index: -1 +mfsn_hair2 + rotate: true + xy: 2, 58 + size: 70, 87 + orig: 70, 87 + offset: 0, 0 + index: -1 +mfsn_hair3 + rotate: true + xy: 132, 89 + size: 78, 97 + orig: 78, 97 + offset: 0, 0 + index: -1 +mfsn_hair4 + rotate: true + xy: 74, 5 + size: 50, 93 + orig: 50, 93 + offset: 0, 0 + index: -1 +mfsn_hair5 + rotate: false + xy: 91, 57 + size: 34, 71 + orig: 34, 71 + offset: 0, 0 + index: -1 +mfsn_hair6 + rotate: false + xy: 149, 169 + size: 77, 121 + orig: 77, 121 + offset: 0, 0 + index: -1 +mfsn_hair_ear_L + rotate: true + xy: 2, 194 + size: 96, 145 + orig: 96, 145 + offset: 0, 0 + index: -1 +mfsn_hair_ear_R + rotate: true + xy: 2, 130 + size: 62, 128 + orig: 62, 128 + offset: 0, 0 + index: -1 +mfsn_hairzs + rotate: false + xy: 2, 8 + size: 70, 48 + orig: 70, 48 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.atlas.meta new file mode 100644 index 0000000..3e5981f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "7f4be491-34bf-474e-b501-058aaac3ccde", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.png b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.png new file mode 100644 index 0000000..b50ef63 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.png.meta new file mode 100644 index 0000000..cb6517e --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dcbad1ad-d5e8-43c5-b14f-b569249af983", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dcbad1ad-d5e8-43c5-b14f-b569249af983@6c48a", + "displayName": "hat_20532", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dcbad1ad-d5e8-43c5-b14f-b569249af983", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dcbad1ad-d5e8-43c5-b14f-b569249af983@f9941", + "displayName": "hat_20532", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 229, + "height": 286, + "rawWidth": 235, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -114.5, + -143, + 0, + 114.5, + -143, + 0, + -114.5, + 143, + 0, + 114.5, + 143, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 289, + 232, + 289, + 3, + 3, + 232, + 3 + ], + "nuv": [ + 0.01276595744680851, + 0.010273972602739725, + 0.9872340425531915, + 0.010273972602739725, + 0.01276595744680851, + 0.9897260273972602, + 0.9872340425531915, + 0.9897260273972602 + ], + "minPos": [ + -114.5, + -143, + 0 + ], + "maxPos": [ + 114.5, + 143, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dcbad1ad-d5e8-43c5-b14f-b569249af983@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dcbad1ad-d5e8-43c5-b14f-b569249af983@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.skel b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.skel new file mode 100644 index 0000000..089644a Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.skel.meta new file mode 100644 index 0000000..1ec302a --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20532/hat_20532.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "7bdcf508-2361-4829-a4bf-07d2b1de6f13", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "7f4be491-34bf-474e-b501-058aaac3ccde" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537.meta b/assets/loadable/dress-spine/DressSpine/hat_20537.meta new file mode 100644 index 0000000..e437e69 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20537.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "178e47ed-a87c-46c7-a7c3-ad1e38d32a08", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.atlas b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.atlas new file mode 100644 index 0000000..c949d6f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.atlas @@ -0,0 +1,20 @@ + +hat_20537.png +size: 261,202 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bingxueqiyuan1 + rotate: true + xy: 207, 142 + size: 58, 52 + orig: 58, 52 + offset: 0, 0 + index: -1 +bingxueqiyuan2 + rotate: true + xy: 2, 2 + size: 198, 203 + orig: 198, 203 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.atlas.meta new file mode 100644 index 0000000..798a567 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "cb2c1ab7-21bd-4f59-bfb6-d9e7440c5a4e", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.png b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.png new file mode 100644 index 0000000..17f8cff Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.png.meta new file mode 100644 index 0000000..e30c1b2 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "921f101b-cf9e-4639-bc76-3a0ba33ec5a3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "921f101b-cf9e-4639-bc76-3a0ba33ec5a3@6c48a", + "displayName": "hat_20537", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "921f101b-cf9e-4639-bc76-3a0ba33ec5a3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "921f101b-cf9e-4639-bc76-3a0ba33ec5a3@f9941", + "displayName": "hat_20537", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 255, + "height": 196, + "rawWidth": 261, + "rawHeight": 202, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -127.5, + -98, + 0, + 127.5, + -98, + 0, + -127.5, + 98, + 0, + 127.5, + 98, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 199, + 258, + 199, + 3, + 3, + 258, + 3 + ], + "nuv": [ + 0.011494252873563218, + 0.01485148514851485, + 0.9885057471264368, + 0.01485148514851485, + 0.011494252873563218, + 0.9851485148514851, + 0.9885057471264368, + 0.9851485148514851 + ], + "minPos": [ + -127.5, + -98, + 0 + ], + "maxPos": [ + 127.5, + 98, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "921f101b-cf9e-4639-bc76-3a0ba33ec5a3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "921f101b-cf9e-4639-bc76-3a0ba33ec5a3@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.skel b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.skel new file mode 100644 index 0000000..9c87c1a Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.skel.meta new file mode 100644 index 0000000..1a5a8e7 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20537/hat_20537.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "b3e94bca-8003-4137-af6c-9c79c13d093d", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "cb2c1ab7-21bd-4f59-bfb6-d9e7440c5a4e" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542.meta b/assets/loadable/dress-spine/DressSpine/hat_20542.meta new file mode 100644 index 0000000..71a0c81 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20542.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "25dc3389-e119-4dbf-b054-6bbba0d3b1d9", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.atlas b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.atlas new file mode 100644 index 0000000..7cbb6bb --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.atlas @@ -0,0 +1,41 @@ + +hat_20542.png +size: 582,167 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bxgz_hair1 + rotate: true + xy: 192, 9 + size: 156, 177 + orig: 156, 177 + offset: 0, 0 + index: -1 +bxgz_hair2 + rotate: true + xy: 2, 17 + size: 148, 188 + orig: 148, 188 + offset: 0, 0 + index: -1 +bxgz_hdj_1 + rotate: true + xy: 509, 21 + size: 144, 71 + orig: 144, 71 + offset: 0, 0 + index: -1 +bxgz_hdj_2 + rotate: true + xy: 371, 2 + size: 163, 69 + orig: 163, 69 + offset: 0, 0 + index: -1 +bxgz_hdj_2yy + rotate: true + xy: 442, 7 + size: 158, 65 + orig: 158, 65 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.atlas.meta new file mode 100644 index 0000000..758bab8 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "02a4b4a7-d579-4491-96b9-146235799d0c", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.png b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.png new file mode 100644 index 0000000..fa08a96 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.png.meta new file mode 100644 index 0000000..91c64d3 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cd16ba6f-a076-4493-9565-6ce073a5a43d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cd16ba6f-a076-4493-9565-6ce073a5a43d@6c48a", + "displayName": "hat_20542", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cd16ba6f-a076-4493-9565-6ce073a5a43d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cd16ba6f-a076-4493-9565-6ce073a5a43d@f9941", + "displayName": "hat_20542", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 576, + "height": 161, + "rawWidth": 582, + "rawHeight": 167, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -288, + -80.5, + 0, + 288, + -80.5, + 0, + -288, + 80.5, + 0, + 288, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 164, + 579, + 164, + 3, + 3, + 579, + 3 + ], + "nuv": [ + 0.005154639175257732, + 0.017964071856287425, + 0.9948453608247423, + 0.017964071856287425, + 0.005154639175257732, + 0.9820359281437125, + 0.9948453608247423, + 0.9820359281437125 + ], + "minPos": [ + -288, + -80.5, + 0 + ], + "maxPos": [ + 288, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd16ba6f-a076-4493-9565-6ce073a5a43d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cd16ba6f-a076-4493-9565-6ce073a5a43d@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.skel b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.skel new file mode 100644 index 0000000..4502072 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.skel.meta new file mode 100644 index 0000000..4f33a75 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20542/hat_20542.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "788691de-a176-46b9-a4c5-20b3d49f6d8c", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "02a4b4a7-d579-4491-96b9-146235799d0c" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547.meta b/assets/loadable/dress-spine/DressSpine/hat_20547.meta new file mode 100644 index 0000000..e79eaa2 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20547.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a1b1e047-d68d-4491-ade4-b86affca2120", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.atlas b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.atlas new file mode 100644 index 0000000..b2e6b00 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.atlas @@ -0,0 +1,27 @@ + +hat_20547.png +size: 422,163 +format: RGBA8888 +filter: Linear,Linear +repeat: none +jack_hat + rotate: false + xy: 2, 2 + size: 234, 159 + orig: 234, 159 + offset: 0, 0 + index: -1 +jack_hatzs1 + rotate: false + xy: 238, 31 + size: 129, 130 + orig: 129, 130 + offset: 0, 0 + index: -1 +jack_hatzs2 + rotate: true + xy: 369, 10 + size: 151, 51 + orig: 151, 51 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.atlas.meta new file mode 100644 index 0000000..a1c3b4f --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "204a9c80-3c14-41e0-a421-9d14bd747a42", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.png b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.png new file mode 100644 index 0000000..1c3a90a Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.png.meta new file mode 100644 index 0000000..293f821 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a921b368-8cbd-40a0-9a43-3d99cc2d58bf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a921b368-8cbd-40a0-9a43-3d99cc2d58bf@6c48a", + "displayName": "hat_20547", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a921b368-8cbd-40a0-9a43-3d99cc2d58bf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a921b368-8cbd-40a0-9a43-3d99cc2d58bf@f9941", + "displayName": "hat_20547", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 416, + "height": 157, + "rawWidth": 422, + "rawHeight": 163, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -208, + -78.5, + 0, + 208, + -78.5, + 0, + -208, + 78.5, + 0, + 208, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 160, + 419, + 160, + 3, + 3, + 419, + 3 + ], + "nuv": [ + 0.0071090047393364926, + 0.018404907975460124, + 0.9928909952606635, + 0.018404907975460124, + 0.0071090047393364926, + 0.9815950920245399, + 0.9928909952606635, + 0.9815950920245399 + ], + "minPos": [ + -208, + -78.5, + 0 + ], + "maxPos": [ + 208, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a921b368-8cbd-40a0-9a43-3d99cc2d58bf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a921b368-8cbd-40a0-9a43-3d99cc2d58bf@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.skel b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.skel new file mode 100644 index 0000000..c38bbf9 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.skel.meta new file mode 100644 index 0000000..e3adff7 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20547/hat_20547.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "e9451192-6573-48c3-8328-54a78d78cda9", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "204a9c80-3c14-41e0-a421-9d14bd747a42" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572.meta b/assets/loadable/dress-spine/DressSpine/hat_20572.meta new file mode 100644 index 0000000..15a44ea --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20572.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a561cebb-e4e4-498a-a399-cc7a9d967af6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.atlas b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.atlas new file mode 100644 index 0000000..262c8ad --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.atlas @@ -0,0 +1,20 @@ + +hat_20572.png +size: 210,84 +format: RGBA8888 +filter: Linear,Linear +repeat: none +Superman_hair1 + rotate: false + xy: 159, 2 + size: 49, 80 + orig: 49, 80 + offset: 0, 0 + index: -1 +Superman_hair2 + rotate: false + xy: 2, 7 + size: 155, 75 + orig: 155, 75 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.atlas.meta b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.atlas.meta new file mode 100644 index 0000000..7bc823a --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "fcb34385-f68c-49f9-a9a0-f7f587c2f330", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.png b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.png new file mode 100644 index 0000000..f018f55 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.png differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.png.meta b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.png.meta new file mode 100644 index 0000000..b311925 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aef5be7f-e355-41c0-89e3-fe436ce8b0bf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aef5be7f-e355-41c0-89e3-fe436ce8b0bf@6c48a", + "displayName": "hat_20572", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aef5be7f-e355-41c0-89e3-fe436ce8b0bf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "aef5be7f-e355-41c0-89e3-fe436ce8b0bf@f9941", + "displayName": "hat_20572", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 204, + "height": 78, + "rawWidth": 210, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -102, + -39, + 0, + 102, + -39, + 0, + -102, + 39, + 0, + 102, + 39, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 81, + 207, + 81, + 3, + 3, + 207, + 3 + ], + "nuv": [ + 0.014285714285714285, + 0.03571428571428571, + 0.9857142857142858, + 0.03571428571428571, + 0.014285714285714285, + 0.9642857142857143, + 0.9857142857142858, + 0.9642857142857143 + ], + "minPos": [ + -102, + -39, + 0 + ], + "maxPos": [ + 102, + 39, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aef5be7f-e355-41c0-89e3-fe436ce8b0bf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aef5be7f-e355-41c0-89e3-fe436ce8b0bf@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.skel b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.skel new file mode 100644 index 0000000..8f31dd4 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.skel.meta b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.skel.meta new file mode 100644 index 0000000..c6e17bb --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/hat_20572/hat_20572.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "d960ec34-90b2-44c6-9c85-ba0679c0dff5", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "fcb34385-f68c-49f9-a9a0-f7f587c2f330" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514.meta b/assets/loadable/dress-spine/DressSpine/tie_20514.meta new file mode 100644 index 0000000..84391d9 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20514.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "1da5e694-e5e4-446a-9027-e6bec4c53610", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.atlas b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.atlas new file mode 100644 index 0000000..97274eb --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.atlas @@ -0,0 +1,34 @@ + +tie_20514.png +size: 235,108 +format: RGBA8888 +filter: Linear,Linear +repeat: none +GY_huzi1 + rotate: true + xy: 173, 40 + size: 66, 60 + orig: 66, 60 + offset: 0, 0 + index: -1 +GY_huzi2 + rotate: false + xy: 2, 2 + size: 94, 104 + orig: 94, 104 + offset: 0, 0 + index: -1 +GY_huzi3 + rotate: true + xy: 98, 9 + size: 97, 73 + orig: 97, 73 + offset: 0, 0 + index: -1 +glasses/zs_hdi_01 + rotate: false + xy: 98, 6 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.atlas.meta b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.atlas.meta new file mode 100644 index 0000000..8b6c50e --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "5ef346ee-0978-42b5-bca3-3f7266338a16", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.png b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.png new file mode 100644 index 0000000..5fce605 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.png differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.png.meta b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.png.meta new file mode 100644 index 0000000..5e84c24 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0f6f4107-f4a1-4526-9840-265bbd14854c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0f6f4107-f4a1-4526-9840-265bbd14854c@6c48a", + "displayName": "tie_20514", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0f6f4107-f4a1-4526-9840-265bbd14854c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0f6f4107-f4a1-4526-9840-265bbd14854c@f9941", + "displayName": "tie_20514", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 229, + "height": 102, + "rawWidth": 235, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -114.5, + -51, + 0, + 114.5, + -51, + 0, + -114.5, + 51, + 0, + 114.5, + 51, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 105, + 232, + 105, + 3, + 3, + 232, + 3 + ], + "nuv": [ + 0.01276595744680851, + 0.027777777777777776, + 0.9872340425531915, + 0.027777777777777776, + 0.01276595744680851, + 0.9722222222222222, + 0.9872340425531915, + 0.9722222222222222 + ], + "minPos": [ + -114.5, + -51, + 0 + ], + "maxPos": [ + 114.5, + 51, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f6f4107-f4a1-4526-9840-265bbd14854c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0f6f4107-f4a1-4526-9840-265bbd14854c@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.skel b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.skel new file mode 100644 index 0000000..04da3ea Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.skel.meta b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.skel.meta new file mode 100644 index 0000000..08fb856 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20514/tie_20514.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "de8ac8df-7f53-437c-ab57-50533babc74c", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "5ef346ee-0978-42b5-bca3-3f7266338a16" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524.meta b/assets/loadable/dress-spine/DressSpine/tie_20524.meta new file mode 100644 index 0000000..6c49200 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20524.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "cdf11982-cdff-4442-a295-64c882e5677f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.atlas b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.atlas new file mode 100644 index 0000000..33f08ad --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.atlas @@ -0,0 +1,13 @@ + +tie_20524.png +size: 81,69 +format: RGBA8888 +filter: Linear,Linear +repeat: none +qs_zs_hdi_hua + rotate: false + xy: 2, 2 + size: 77, 65 + orig: 77, 65 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.atlas.meta b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.atlas.meta new file mode 100644 index 0000000..c63dc25 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "990a8cbe-ae43-4d52-93d8-47fb762e871d", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.png b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.png new file mode 100644 index 0000000..3e844eb Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.png differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.png.meta b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.png.meta new file mode 100644 index 0000000..cd18191 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b768981e-eff0-4b95-9863-665fdb6bdf52", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b768981e-eff0-4b95-9863-665fdb6bdf52@6c48a", + "displayName": "tie_20524", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b768981e-eff0-4b95-9863-665fdb6bdf52", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b768981e-eff0-4b95-9863-665fdb6bdf52@f9941", + "displayName": "tie_20524", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4.5, + "offsetY": -22.5, + "trimX": 23, + "trimY": 56, + "width": 75, + "height": 63, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -37.5, + -31.5, + 0, + 37.5, + -31.5, + 0, + -37.5, + 31.5, + 0, + 37.5, + 31.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 23, + 74, + 98, + 74, + 23, + 11, + 98, + 11 + ], + "nuv": [ + 0.17692307692307693, + 0.08461538461538462, + 0.7538461538461538, + 0.08461538461538462, + 0.17692307692307693, + 0.5692307692307692, + 0.7538461538461538, + 0.5692307692307692 + ], + "minPos": [ + -37.5, + -31.5, + 0 + ], + "maxPos": [ + 37.5, + 31.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b768981e-eff0-4b95-9863-665fdb6bdf52@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b768981e-eff0-4b95-9863-665fdb6bdf52@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.skel b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.skel new file mode 100644 index 0000000..d88cd2f Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.skel.meta b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.skel.meta new file mode 100644 index 0000000..cca9e80 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20524/tie_20524.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "4e719716-ef85-4bb1-812c-08c46b1c9b1c", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "990a8cbe-ae43-4d52-93d8-47fb762e871d" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529.meta b/assets/loadable/dress-spine/DressSpine/tie_20529.meta new file mode 100644 index 0000000..6f18d27 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20529.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "40f3e22c-fe4c-44b7-b792-47f281684623", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.atlas b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.atlas new file mode 100644 index 0000000..7a201ac --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.atlas @@ -0,0 +1,13 @@ + +tie_20529.png +size: 105,99 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bs_zs_hdi_lianhua + rotate: false + xy: 2, 2 + size: 101, 95 + orig: 101, 95 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.atlas.meta b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.atlas.meta new file mode 100644 index 0000000..e0c5efc --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "2903f147-0029-41cb-9031-5d436c55dc4f", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.png b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.png new file mode 100644 index 0000000..82ad9e3 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.png differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.png.meta b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.png.meta new file mode 100644 index 0000000..e02acc3 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dd20a4cb-909c-400e-b392-509ef6b5c34f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dd20a4cb-909c-400e-b392-509ef6b5c34f@6c48a", + "displayName": "tie_20529", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dd20a4cb-909c-400e-b392-509ef6b5c34f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dd20a4cb-909c-400e-b392-509ef6b5c34f@f9941", + "displayName": "tie_20529", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 99, + "height": 93, + "rawWidth": 105, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -49.5, + -46.5, + 0, + 49.5, + -46.5, + 0, + -49.5, + 46.5, + 0, + 49.5, + 46.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 96, + 102, + 96, + 3, + 3, + 102, + 3 + ], + "nuv": [ + 0.02857142857142857, + 0.030303030303030304, + 0.9714285714285714, + 0.030303030303030304, + 0.02857142857142857, + 0.9696969696969697, + 0.9714285714285714, + 0.9696969696969697 + ], + "minPos": [ + -49.5, + -46.5, + 0 + ], + "maxPos": [ + 49.5, + 46.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dd20a4cb-909c-400e-b392-509ef6b5c34f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dd20a4cb-909c-400e-b392-509ef6b5c34f@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.skel b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.skel new file mode 100644 index 0000000..f976b23 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.skel.meta b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.skel.meta new file mode 100644 index 0000000..bea3694 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20529/tie_20529.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "d49132e2-5c6b-408f-a543-d671d056f385", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "2903f147-0029-41cb-9031-5d436c55dc4f" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534.meta b/assets/loadable/dress-spine/DressSpine/tie_20534.meta new file mode 100644 index 0000000..28c107a --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20534.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "50903c43-db82-4e14-b59d-a85e4bc5bfd9", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.atlas b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.atlas new file mode 100644 index 0000000..eed1b72 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.atlas @@ -0,0 +1,13 @@ + +tie_20534.png +size: 120,84 +format: RGBA8888 +filter: Linear,Linear +repeat: none +mfsn_zs_hdi + rotate: false + xy: 2, 2 + size: 116, 80 + orig: 116, 80 + offset: 0, 0 + index: -1 diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.atlas.meta b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.atlas.meta new file mode 100644 index 0000000..3422691 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "7ec7936c-e398-4a1a-8755-dff639c0d2f1", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.png b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.png new file mode 100644 index 0000000..599a5a2 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.png differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.png.meta b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.png.meta new file mode 100644 index 0000000..2672099 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "89ed7663-5e2c-44bc-b54a-f47931b13bfe", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "89ed7663-5e2c-44bc-b54a-f47931b13bfe@6c48a", + "displayName": "tie_20534", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "89ed7663-5e2c-44bc-b54a-f47931b13bfe", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "89ed7663-5e2c-44bc-b54a-f47931b13bfe@f9941", + "displayName": "tie_20534", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -11, + "offsetY": -24, + "trimX": 1, + "trimY": 53, + "width": 106, + "height": 72, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -53, + -36, + 0, + 53, + -36, + 0, + -53, + 36, + 0, + 53, + 36, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 77, + 107, + 77, + 1, + 5, + 107, + 5 + ], + "nuv": [ + 0.007692307692307693, + 0.038461538461538464, + 0.823076923076923, + 0.038461538461538464, + 0.007692307692307693, + 0.5923076923076923, + 0.823076923076923, + 0.5923076923076923 + ], + "minPos": [ + -53, + -36, + 0 + ], + "maxPos": [ + 53, + 36, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "89ed7663-5e2c-44bc-b54a-f47931b13bfe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "89ed7663-5e2c-44bc-b54a-f47931b13bfe@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.skel b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.skel new file mode 100644 index 0000000..fe32105 Binary files /dev/null and b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.skel differ diff --git a/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.skel.meta b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.skel.meta new file mode 100644 index 0000000..daf8989 --- /dev/null +++ b/assets/loadable/dress-spine/DressSpine/tie_20534/tie_20534.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "bc4a0057-5c8a-4904-b342-1b7f2d033d10", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "7ec7936c-e398-4a1a-8755-dff639c0d2f1" + } +} diff --git a/assets/loadable/dress-spine/DressTexture.meta b/assets/loadable/dress-spine/DressTexture.meta new file mode 100644 index 0000000..69c38b9 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "be37e05f-ebef-4dee-a7b5-9907bc80988f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_20501.png b/assets/loadable/dress-spine/DressTexture/bag_20501.png new file mode 100644 index 0000000..8a823b8 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_20501.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_20501.png.meta b/assets/loadable/dress-spine/DressTexture/bag_20501.png.meta new file mode 100644 index 0000000..b42751e --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_20501.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8aead8d0-70b4-4d57-b83d-7ce8fc71199b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8aead8d0-70b4-4d57-b83d-7ce8fc71199b@6c48a", + "displayName": "bag_20501", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8aead8d0-70b4-4d57-b83d-7ce8fc71199b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8aead8d0-70b4-4d57-b83d-7ce8fc71199b@f9941", + "displayName": "bag_20501", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10.5, + "offsetY": -21.5, + "trimX": 48, + "trimY": 46, + "width": 73, + "height": 99, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -36.5, + -49.5, + 0, + 36.5, + -49.5, + 0, + -36.5, + 49.5, + 0, + 36.5, + 49.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 48, + 102, + 121, + 102, + 48, + 3, + 121, + 3 + ], + "nuv": [ + 0.25263157894736843, + 0.02027027027027027, + 0.6368421052631579, + 0.02027027027027027, + 0.25263157894736843, + 0.6891891891891891, + 0.6368421052631579, + 0.6891891891891891 + ], + "minPos": [ + -36.5, + -49.5, + 0 + ], + "maxPos": [ + 36.5, + 49.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8aead8d0-70b4-4d57-b83d-7ce8fc71199b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8aead8d0-70b4-4d57-b83d-7ce8fc71199b@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_20506.png b/assets/loadable/dress-spine/DressTexture/bag_20506.png new file mode 100644 index 0000000..6a0e508 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_20506.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_20506.png.meta b/assets/loadable/dress-spine/DressTexture/bag_20506.png.meta new file mode 100644 index 0000000..8066820 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_20506.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c7c02eb5-9ca4-4483-89c6-8f6c2b2ba1f4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c7c02eb5-9ca4-4483-89c6-8f6c2b2ba1f4@6c48a", + "displayName": "bag_20506", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c7c02eb5-9ca4-4483-89c6-8f6c2b2ba1f4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c7c02eb5-9ca4-4483-89c6-8f6c2b2ba1f4@f9941", + "displayName": "bag_20506", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -16, + "trimX": 31, + "trimY": 56, + "width": 128, + "height": 68, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -64, + -34, + 0, + 64, + -34, + 0, + -64, + 34, + 0, + 64, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 31, + 92, + 159, + 92, + 31, + 24, + 159, + 24 + ], + "nuv": [ + 0.1631578947368421, + 0.16216216216216217, + 0.8368421052631579, + 0.16216216216216217, + 0.1631578947368421, + 0.6216216216216216, + 0.8368421052631579, + 0.6216216216216216 + ], + "minPos": [ + -64, + -34, + 0 + ], + "maxPos": [ + 64, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c7c02eb5-9ca4-4483-89c6-8f6c2b2ba1f4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c7c02eb5-9ca4-4483-89c6-8f6c2b2ba1f4@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_20516.png b/assets/loadable/dress-spine/DressTexture/bag_20516.png new file mode 100644 index 0000000..ea913f1 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_20516.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_20516.png.meta b/assets/loadable/dress-spine/DressTexture/bag_20516.png.meta new file mode 100644 index 0000000..05ddd68 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_20516.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b79935a9-5402-4425-a850-b5fabe3bf114", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b79935a9-5402-4425-a850-b5fabe3bf114@6c48a", + "displayName": "bag_20516", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b79935a9-5402-4425-a850-b5fabe3bf114", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b79935a9-5402-4425-a850-b5fabe3bf114@f9941", + "displayName": "bag_20516", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7.5, + "offsetY": -7, + "trimX": 37, + "trimY": 15, + "width": 101, + "height": 132, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50.5, + -66, + 0, + 50.5, + -66, + 0, + -50.5, + 66, + 0, + 50.5, + 66, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 37, + 133, + 138, + 133, + 37, + 1, + 138, + 1 + ], + "nuv": [ + 0.19473684210526315, + 0.006756756756756757, + 0.7263157894736842, + 0.006756756756756757, + 0.19473684210526315, + 0.8986486486486487, + 0.7263157894736842, + 0.8986486486486487 + ], + "minPos": [ + -50.5, + -66, + 0 + ], + "maxPos": [ + 50.5, + 66, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b79935a9-5402-4425-a850-b5fabe3bf114@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b79935a9-5402-4425-a850-b5fabe3bf114@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21001.png b/assets/loadable/dress-spine/DressTexture/bag_21001.png new file mode 100644 index 0000000..de5b143 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21001.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21001.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21001.png.meta new file mode 100644 index 0000000..2020189 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21001.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9967f48e-1277-4b97-8a18-cdb111c2f406", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9967f48e-1277-4b97-8a18-cdb111c2f406@6c48a", + "displayName": "bag_21001", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9967f48e-1277-4b97-8a18-cdb111c2f406", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9967f48e-1277-4b97-8a18-cdb111c2f406@f9941", + "displayName": "bag_21001", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": -5, + "trimX": 50, + "trimY": 45, + "width": 70, + "height": 68, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -35, + -34, + 0, + 35, + -34, + 0, + -35, + 34, + 0, + 35, + 34, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 50, + 103, + 120, + 103, + 50, + 35, + 120, + 35 + ], + "nuv": [ + 0.2631578947368421, + 0.23648648648648649, + 0.631578947368421, + 0.23648648648648649, + 0.2631578947368421, + 0.6959459459459459, + 0.631578947368421, + 0.6959459459459459 + ], + "minPos": [ + -35, + -34, + 0 + ], + "maxPos": [ + 35, + 34, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9967f48e-1277-4b97-8a18-cdb111c2f406@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9967f48e-1277-4b97-8a18-cdb111c2f406@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21004.png b/assets/loadable/dress-spine/DressTexture/bag_21004.png new file mode 100644 index 0000000..1c12343 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21004.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21004.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21004.png.meta new file mode 100644 index 0000000..af9ea9d --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21004.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "001d4de9-4398-4398-b304-fb7b3915eeef", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "001d4de9-4398-4398-b304-fb7b3915eeef@6c48a", + "displayName": "bag_21004", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "001d4de9-4398-4398-b304-fb7b3915eeef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "001d4de9-4398-4398-b304-fb7b3915eeef@f9941", + "displayName": "bag_21004", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": -4.5, + "trimX": 24, + "trimY": 30, + "width": 126, + "height": 97, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -63, + -48.5, + 0, + 63, + -48.5, + 0, + -63, + 48.5, + 0, + 63, + 48.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 24, + 118, + 150, + 118, + 24, + 21, + 150, + 21 + ], + "nuv": [ + 0.12631578947368421, + 0.14189189189189189, + 0.7894736842105263, + 0.14189189189189189, + 0.12631578947368421, + 0.7972972972972973, + 0.7894736842105263, + 0.7972972972972973 + ], + "minPos": [ + -63, + -48.5, + 0 + ], + "maxPos": [ + 63, + 48.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "001d4de9-4398-4398-b304-fb7b3915eeef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "001d4de9-4398-4398-b304-fb7b3915eeef@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21005.png b/assets/loadable/dress-spine/DressTexture/bag_21005.png new file mode 100644 index 0000000..48963c3 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21005.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21005.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21005.png.meta new file mode 100644 index 0000000..d1645b3 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21005.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "adfabc72-6d2f-4f77-83c1-ac968a9e916d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "adfabc72-6d2f-4f77-83c1-ac968a9e916d@6c48a", + "displayName": "bag_21005", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "adfabc72-6d2f-4f77-83c1-ac968a9e916d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "adfabc72-6d2f-4f77-83c1-ac968a9e916d@f9941", + "displayName": "bag_21005", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 6.5, + "offsetY": 0, + "trimX": 65, + "trimY": 3, + "width": 73, + "height": 142, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -36.5, + -71, + 0, + 36.5, + -71, + 0, + -36.5, + 71, + 0, + 36.5, + 71, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 65, + 145, + 138, + 145, + 65, + 3, + 138, + 3 + ], + "nuv": [ + 0.34210526315789475, + 0.02027027027027027, + 0.7263157894736842, + 0.02027027027027027, + 0.34210526315789475, + 0.9797297297297297, + 0.7263157894736842, + 0.9797297297297297 + ], + "minPos": [ + -36.5, + -71, + 0 + ], + "maxPos": [ + 36.5, + 71, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "adfabc72-6d2f-4f77-83c1-ac968a9e916d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "adfabc72-6d2f-4f77-83c1-ac968a9e916d@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21006.png b/assets/loadable/dress-spine/DressTexture/bag_21006.png new file mode 100644 index 0000000..0b20c61 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21006.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21006.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21006.png.meta new file mode 100644 index 0000000..d4379d4 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "39bf223c-6c3c-4c1c-9630-e7628451a628", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "39bf223c-6c3c-4c1c-9630-e7628451a628@6c48a", + "displayName": "bag_21006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "39bf223c-6c3c-4c1c-9630-e7628451a628", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "39bf223c-6c3c-4c1c-9630-e7628451a628@f9941", + "displayName": "bag_21006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": -7, + "trimX": 36, + "trimY": 28, + "width": 110, + "height": 106, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -55, + -53, + 0, + 55, + -53, + 0, + -55, + 53, + 0, + 55, + 53, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 36, + 120, + 146, + 120, + 36, + 14, + 146, + 14 + ], + "nuv": [ + 0.18947368421052632, + 0.0945945945945946, + 0.7684210526315789, + 0.0945945945945946, + 0.18947368421052632, + 0.8108108108108109, + 0.7684210526315789, + 0.8108108108108109 + ], + "minPos": [ + -55, + -53, + 0 + ], + "maxPos": [ + 55, + 53, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "39bf223c-6c3c-4c1c-9630-e7628451a628@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "39bf223c-6c3c-4c1c-9630-e7628451a628@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21007.png b/assets/loadable/dress-spine/DressTexture/bag_21007.png new file mode 100644 index 0000000..9678532 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21007.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21007.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21007.png.meta new file mode 100644 index 0000000..51a55ca --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "366717f5-ec17-4df6-88ff-d3db747c9a7b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "366717f5-ec17-4df6-88ff-d3db747c9a7b@6c48a", + "displayName": "bag_21007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "366717f5-ec17-4df6-88ff-d3db747c9a7b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "366717f5-ec17-4df6-88ff-d3db747c9a7b@f9941", + "displayName": "bag_21007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10.5, + "offsetY": -10.5, + "trimX": 37, + "trimY": 36, + "width": 95, + "height": 97, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -47.5, + -48.5, + 0, + 47.5, + -48.5, + 0, + -47.5, + 48.5, + 0, + 47.5, + 48.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 37, + 112, + 132, + 112, + 37, + 15, + 132, + 15 + ], + "nuv": [ + 0.19473684210526315, + 0.10135135135135136, + 0.6947368421052632, + 0.10135135135135136, + 0.19473684210526315, + 0.7567567567567568, + 0.6947368421052632, + 0.7567567567567568 + ], + "minPos": [ + -47.5, + -48.5, + 0 + ], + "maxPos": [ + 47.5, + 48.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "366717f5-ec17-4df6-88ff-d3db747c9a7b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "366717f5-ec17-4df6-88ff-d3db747c9a7b@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21009.png b/assets/loadable/dress-spine/DressTexture/bag_21009.png new file mode 100644 index 0000000..081b842 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21009.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21009.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21009.png.meta new file mode 100644 index 0000000..511b289 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21009.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "75cffcf3-4770-45fe-8ef5-3c711cc4bed7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "75cffcf3-4770-45fe-8ef5-3c711cc4bed7@6c48a", + "displayName": "bag_21009", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "75cffcf3-4770-45fe-8ef5-3c711cc4bed7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "75cffcf3-4770-45fe-8ef5-3c711cc4bed7@f9941", + "displayName": "bag_21009", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": -7, + "trimX": 21, + "trimY": 27, + "width": 138, + "height": 108, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -69, + -54, + 0, + 69, + -54, + 0, + -69, + 54, + 0, + 69, + 54, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 21, + 121, + 159, + 121, + 21, + 13, + 159, + 13 + ], + "nuv": [ + 0.11052631578947368, + 0.08783783783783784, + 0.8368421052631579, + 0.08783783783783784, + 0.11052631578947368, + 0.8175675675675675, + 0.8368421052631579, + 0.8175675675675675 + ], + "minPos": [ + -69, + -54, + 0 + ], + "maxPos": [ + 69, + 54, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "75cffcf3-4770-45fe-8ef5-3c711cc4bed7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "75cffcf3-4770-45fe-8ef5-3c711cc4bed7@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21010.png b/assets/loadable/dress-spine/DressTexture/bag_21010.png new file mode 100644 index 0000000..833d3cd Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21010.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21010.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21010.png.meta new file mode 100644 index 0000000..3d3133f --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21010.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1145d3c6-b860-48a3-8385-69638f6f9eaa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1145d3c6-b860-48a3-8385-69638f6f9eaa@6c48a", + "displayName": "bag_21010", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1145d3c6-b860-48a3-8385-69638f6f9eaa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1145d3c6-b860-48a3-8385-69638f6f9eaa@f9941", + "displayName": "bag_21010", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2.5, + "offsetY": -27, + "trimX": 26, + "trimY": 64, + "width": 133, + "height": 74, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -66.5, + -37, + 0, + 66.5, + -37, + 0, + -66.5, + 37, + 0, + 66.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 26, + 84, + 159, + 84, + 26, + 10, + 159, + 10 + ], + "nuv": [ + 0.1368421052631579, + 0.06756756756756757, + 0.8368421052631579, + 0.06756756756756757, + 0.1368421052631579, + 0.5675675675675675, + 0.8368421052631579, + 0.5675675675675675 + ], + "minPos": [ + -66.5, + -37, + 0 + ], + "maxPos": [ + 66.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1145d3c6-b860-48a3-8385-69638f6f9eaa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1145d3c6-b860-48a3-8385-69638f6f9eaa@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21011.png b/assets/loadable/dress-spine/DressTexture/bag_21011.png new file mode 100644 index 0000000..290c0e2 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21011.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21011.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21011.png.meta new file mode 100644 index 0000000..e5e0d8d --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21011.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6045cc35-3cc1-4d3a-b6ab-92a2d3f33b2e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6045cc35-3cc1-4d3a-b6ab-92a2d3f33b2e@6c48a", + "displayName": "bag_21011", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6045cc35-3cc1-4d3a-b6ab-92a2d3f33b2e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6045cc35-3cc1-4d3a-b6ab-92a2d3f33b2e@f9941", + "displayName": "bag_21011", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -5, + "trimX": 38, + "trimY": 31, + "width": 112, + "height": 96, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56, + -48, + 0, + 56, + -48, + 0, + -56, + 48, + 0, + 56, + 48, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 38, + 117, + 150, + 117, + 38, + 21, + 150, + 21 + ], + "nuv": [ + 0.2, + 0.14189189189189189, + 0.7894736842105263, + 0.14189189189189189, + 0.2, + 0.7905405405405406, + 0.7894736842105263, + 0.7905405405405406 + ], + "minPos": [ + -56, + -48, + 0 + ], + "maxPos": [ + 56, + 48, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6045cc35-3cc1-4d3a-b6ab-92a2d3f33b2e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6045cc35-3cc1-4d3a-b6ab-92a2d3f33b2e@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21014.png b/assets/loadable/dress-spine/DressTexture/bag_21014.png new file mode 100644 index 0000000..ed6851d Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21014.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21014.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21014.png.meta new file mode 100644 index 0000000..8b60639 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21014.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "46b59812-c029-4f09-b9da-fb991b24282f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "46b59812-c029-4f09-b9da-fb991b24282f@6c48a", + "displayName": "bag_21014", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "46b59812-c029-4f09-b9da-fb991b24282f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "46b59812-c029-4f09-b9da-fb991b24282f@f9941", + "displayName": "bag_21014", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2.5, + "offsetY": -16.5, + "trimX": 26, + "trimY": 56, + "width": 133, + "height": 69, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -66.5, + -34.5, + 0, + 66.5, + -34.5, + 0, + -66.5, + 34.5, + 0, + 66.5, + 34.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 26, + 92, + 159, + 92, + 26, + 23, + 159, + 23 + ], + "nuv": [ + 0.1368421052631579, + 0.1554054054054054, + 0.8368421052631579, + 0.1554054054054054, + 0.1368421052631579, + 0.6216216216216216, + 0.8368421052631579, + 0.6216216216216216 + ], + "minPos": [ + -66.5, + -34.5, + 0 + ], + "maxPos": [ + 66.5, + 34.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "46b59812-c029-4f09-b9da-fb991b24282f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "46b59812-c029-4f09-b9da-fb991b24282f@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/bag_21015.png b/assets/loadable/dress-spine/DressTexture/bag_21015.png new file mode 100644 index 0000000..7f10cdf Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/bag_21015.png differ diff --git a/assets/loadable/dress-spine/DressTexture/bag_21015.png.meta b/assets/loadable/dress-spine/DressTexture/bag_21015.png.meta new file mode 100644 index 0000000..2d6a747 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/bag_21015.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3dd04e67-a166-406a-aa75-5e51867da18e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3dd04e67-a166-406a-aa75-5e51867da18e@6c48a", + "displayName": "bag_21015", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3dd04e67-a166-406a-aa75-5e51867da18e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3dd04e67-a166-406a-aa75-5e51867da18e@f9941", + "displayName": "bag_21015", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 2, + "trimX": 18, + "trimY": 12, + "width": 100, + "height": 120, + "rawWidth": 190, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50, + -60, + 0, + 50, + -60, + 0, + -50, + 60, + 0, + 50, + 60, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 18, + 136, + 118, + 136, + 18, + 16, + 118, + 16 + ], + "nuv": [ + 0.09473684210526316, + 0.10810810810810811, + 0.6210526315789474, + 0.10810810810810811, + 0.09473684210526316, + 0.918918918918919, + 0.6210526315789474, + 0.918918918918919 + ], + "minPos": [ + -50, + -60, + 0 + ], + "maxPos": [ + 50, + 60, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3dd04e67-a166-406a-aa75-5e51867da18e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3dd04e67-a166-406a-aa75-5e51867da18e@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_20508.png b/assets/loadable/dress-spine/DressTexture/eye_20508.png new file mode 100644 index 0000000..d9350b2 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_20508.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_20508.png.meta b/assets/loadable/dress-spine/DressTexture/eye_20508.png.meta new file mode 100644 index 0000000..585273b --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_20508.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "acbb069e-e954-42d0-8d93-e9d9b1e9e4a3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "acbb069e-e954-42d0-8d93-e9d9b1e9e4a3@6c48a", + "displayName": "eye_20508", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "acbb069e-e954-42d0-8d93-e9d9b1e9e4a3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "acbb069e-e954-42d0-8d93-e9d9b1e9e4a3@f9941", + "displayName": "eye_20508", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": -45.5, + "trimX": 8, + "trimY": 97, + "width": 108, + "height": 27, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -54, + -13.5, + 0, + 54, + -13.5, + 0, + -54, + 13.5, + 0, + 54, + 13.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 8, + 33, + 116, + 33, + 8, + 6, + 116, + 6 + ], + "nuv": [ + 0.06153846153846154, + 0.046153846153846156, + 0.8923076923076924, + 0.046153846153846156, + 0.06153846153846154, + 0.25384615384615383, + 0.8923076923076924, + 0.25384615384615383 + ], + "minPos": [ + -54, + -13.5, + 0 + ], + "maxPos": [ + 54, + 13.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "acbb069e-e954-42d0-8d93-e9d9b1e9e4a3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "acbb069e-e954-42d0-8d93-e9d9b1e9e4a3@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23001.png b/assets/loadable/dress-spine/DressTexture/eye_23001.png new file mode 100644 index 0000000..09b965d Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23001.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23001.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23001.png.meta new file mode 100644 index 0000000..7ea4ccc --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23001.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4c78b5da-2930-43cc-9ca3-37d9fbebc770", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4c78b5da-2930-43cc-9ca3-37d9fbebc770@6c48a", + "displayName": "eye_23001", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4c78b5da-2930-43cc-9ca3-37d9fbebc770", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4c78b5da-2930-43cc-9ca3-37d9fbebc770@f9941", + "displayName": "eye_23001", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 2.5, + "offsetY": -2, + "trimX": 19, + "trimY": 45, + "width": 97, + "height": 44, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48.5, + -22, + 0, + 48.5, + -22, + 0, + -48.5, + 22, + 0, + 48.5, + 22, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 19, + 85, + 116, + 85, + 19, + 41, + 116, + 41 + ], + "nuv": [ + 0.14615384615384616, + 0.3153846153846154, + 0.8923076923076924, + 0.3153846153846154, + 0.14615384615384616, + 0.6538461538461539, + 0.8923076923076924, + 0.6538461538461539 + ], + "minPos": [ + -48.5, + -22, + 0 + ], + "maxPos": [ + 48.5, + 22, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4c78b5da-2930-43cc-9ca3-37d9fbebc770@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4c78b5da-2930-43cc-9ca3-37d9fbebc770@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23002.png b/assets/loadable/dress-spine/DressTexture/eye_23002.png new file mode 100644 index 0000000..072f95e Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23002.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23002.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23002.png.meta new file mode 100644 index 0000000..9e066bb --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "43cd8864-242b-4c8a-a7dd-77287e270c09", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "43cd8864-242b-4c8a-a7dd-77287e270c09@6c48a", + "displayName": "eye_23002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "43cd8864-242b-4c8a-a7dd-77287e270c09", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "43cd8864-242b-4c8a-a7dd-77287e270c09@f9941", + "displayName": "eye_23002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -5, + "trimX": 14, + "trimY": 52, + "width": 102, + "height": 36, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -51, + -18, + 0, + 51, + -18, + 0, + -51, + 18, + 0, + 51, + 18, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 14, + 78, + 116, + 78, + 14, + 42, + 116, + 42 + ], + "nuv": [ + 0.1076923076923077, + 0.3230769230769231, + 0.8923076923076924, + 0.3230769230769231, + 0.1076923076923077, + 0.6, + 0.8923076923076924, + 0.6 + ], + "minPos": [ + -51, + -18, + 0 + ], + "maxPos": [ + 51, + 18, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "43cd8864-242b-4c8a-a7dd-77287e270c09@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "43cd8864-242b-4c8a-a7dd-77287e270c09@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23003.png b/assets/loadable/dress-spine/DressTexture/eye_23003.png new file mode 100644 index 0000000..0d60b7d Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23003.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23003.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23003.png.meta new file mode 100644 index 0000000..99a1232 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23003.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0478142a-bb06-40f8-a5f0-951310694ef7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0478142a-bb06-40f8-a5f0-951310694ef7@6c48a", + "displayName": "eye_23003", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0478142a-bb06-40f8-a5f0-951310694ef7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0478142a-bb06-40f8-a5f0-951310694ef7@f9941", + "displayName": "eye_23003", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 3, + "offsetY": -1.5, + "trimX": 19, + "trimY": 46, + "width": 98, + "height": 41, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -49, + -20.5, + 0, + 49, + -20.5, + 0, + -49, + 20.5, + 0, + 49, + 20.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 19, + 84, + 117, + 84, + 19, + 43, + 117, + 43 + ], + "nuv": [ + 0.14615384615384616, + 0.33076923076923076, + 0.9, + 0.33076923076923076, + 0.14615384615384616, + 0.6461538461538462, + 0.9, + 0.6461538461538462 + ], + "minPos": [ + -49, + -20.5, + 0 + ], + "maxPos": [ + 49, + 20.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0478142a-bb06-40f8-a5f0-951310694ef7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0478142a-bb06-40f8-a5f0-951310694ef7@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23004.png b/assets/loadable/dress-spine/DressTexture/eye_23004.png new file mode 100644 index 0000000..691a453 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23004.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23004.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23004.png.meta new file mode 100644 index 0000000..700e72c --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23004.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9c07f735-6b68-4e4d-8279-fd031b956081", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9c07f735-6b68-4e4d-8279-fd031b956081@6c48a", + "displayName": "eye_23004", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9c07f735-6b68-4e4d-8279-fd031b956081", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9c07f735-6b68-4e4d-8279-fd031b956081@f9941", + "displayName": "eye_23004", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -0.5, + "trimX": 19, + "trimY": 43, + "width": 93, + "height": 45, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -46.5, + -22.5, + 0, + 46.5, + -22.5, + 0, + -46.5, + 22.5, + 0, + 46.5, + 22.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 19, + 87, + 112, + 87, + 19, + 42, + 112, + 42 + ], + "nuv": [ + 0.14615384615384616, + 0.3230769230769231, + 0.8615384615384616, + 0.3230769230769231, + 0.14615384615384616, + 0.6692307692307692, + 0.8615384615384616, + 0.6692307692307692 + ], + "minPos": [ + -46.5, + -22.5, + 0 + ], + "maxPos": [ + 46.5, + 22.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9c07f735-6b68-4e4d-8279-fd031b956081@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9c07f735-6b68-4e4d-8279-fd031b956081@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23005.png b/assets/loadable/dress-spine/DressTexture/eye_23005.png new file mode 100644 index 0000000..e5f2d81 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23005.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23005.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23005.png.meta new file mode 100644 index 0000000..b8da028 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23005.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7862a2c3-bf90-41ad-81c3-db474c146913", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7862a2c3-bf90-41ad-81c3-db474c146913@6c48a", + "displayName": "eye_23005", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7862a2c3-bf90-41ad-81c3-db474c146913", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7862a2c3-bf90-41ad-81c3-db474c146913@f9941", + "displayName": "eye_23005", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": -1.5, + "trimX": 20, + "trimY": 41, + "width": 93, + "height": 51, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -46.5, + -25.5, + 0, + 46.5, + -25.5, + 0, + -46.5, + 25.5, + 0, + 46.5, + 25.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 20, + 89, + 113, + 89, + 20, + 38, + 113, + 38 + ], + "nuv": [ + 0.15384615384615385, + 0.2923076923076923, + 0.8692307692307693, + 0.2923076923076923, + 0.15384615384615385, + 0.6846153846153846, + 0.8692307692307693, + 0.6846153846153846 + ], + "minPos": [ + -46.5, + -25.5, + 0 + ], + "maxPos": [ + 46.5, + 25.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7862a2c3-bf90-41ad-81c3-db474c146913@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7862a2c3-bf90-41ad-81c3-db474c146913@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23006.png b/assets/loadable/dress-spine/DressTexture/eye_23006.png new file mode 100644 index 0000000..aeccc14 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23006.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23006.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23006.png.meta new file mode 100644 index 0000000..0064ea9 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df60c0e4-d977-4f39-83e4-457ac7e76397", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df60c0e4-d977-4f39-83e4-457ac7e76397@6c48a", + "displayName": "eye_23006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df60c0e4-d977-4f39-83e4-457ac7e76397", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "df60c0e4-d977-4f39-83e4-457ac7e76397@f9941", + "displayName": "eye_23006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 3, + "offsetY": 5.5, + "trimX": 18, + "trimY": 28, + "width": 100, + "height": 63, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50, + -31.5, + 0, + 50, + -31.5, + 0, + -50, + 31.5, + 0, + 50, + 31.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 18, + 102, + 118, + 102, + 18, + 39, + 118, + 39 + ], + "nuv": [ + 0.13846153846153847, + 0.3, + 0.9076923076923077, + 0.3, + 0.13846153846153847, + 0.7846153846153846, + 0.9076923076923077, + 0.7846153846153846 + ], + "minPos": [ + -50, + -31.5, + 0 + ], + "maxPos": [ + 50, + 31.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df60c0e4-d977-4f39-83e4-457ac7e76397@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df60c0e4-d977-4f39-83e4-457ac7e76397@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23007.png b/assets/loadable/dress-spine/DressTexture/eye_23007.png new file mode 100644 index 0000000..79ad1e5 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23007.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23007.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23007.png.meta new file mode 100644 index 0000000..9a1e7cd --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6798c61b-0c88-4668-9393-000e7cefb2e5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6798c61b-0c88-4668-9393-000e7cefb2e5@6c48a", + "displayName": "eye_23007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6798c61b-0c88-4668-9393-000e7cefb2e5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6798c61b-0c88-4668-9393-000e7cefb2e5@f9941", + "displayName": "eye_23007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 10, + "trimX": 0, + "trimY": 20, + "width": 116, + "height": 70, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -58, + -35, + 0, + 58, + -35, + 0, + -58, + 35, + 0, + 58, + 35, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 110, + 116, + 110, + 0, + 40, + 116, + 40 + ], + "nuv": [ + 0, + 0.3076923076923077, + 0.8923076923076924, + 0.3076923076923077, + 0, + 0.8461538461538461, + 0.8923076923076924, + 0.8461538461538461 + ], + "minPos": [ + -58, + -35, + 0 + ], + "maxPos": [ + 58, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6798c61b-0c88-4668-9393-000e7cefb2e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6798c61b-0c88-4668-9393-000e7cefb2e5@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23008.png b/assets/loadable/dress-spine/DressTexture/eye_23008.png new file mode 100644 index 0000000..ba41afe Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23008.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23008.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23008.png.meta new file mode 100644 index 0000000..d246959 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23008.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "85c3fa5b-d514-441e-bc3b-a6f78b24bdac", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "85c3fa5b-d514-441e-bc3b-a6f78b24bdac@6c48a", + "displayName": "eye_23008", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "85c3fa5b-d514-441e-bc3b-a6f78b24bdac", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "85c3fa5b-d514-441e-bc3b-a6f78b24bdac@f9941", + "displayName": "eye_23008", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 3, + "offsetY": -3.5, + "trimX": 13, + "trimY": 36, + "width": 110, + "height": 65, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -55, + -32.5, + 0, + 55, + -32.5, + 0, + -55, + 32.5, + 0, + 55, + 32.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 94, + 123, + 94, + 13, + 29, + 123, + 29 + ], + "nuv": [ + 0.1, + 0.2230769230769231, + 0.9461538461538461, + 0.2230769230769231, + 0.1, + 0.7230769230769231, + 0.9461538461538461, + 0.7230769230769231 + ], + "minPos": [ + -55, + -32.5, + 0 + ], + "maxPos": [ + 55, + 32.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "85c3fa5b-d514-441e-bc3b-a6f78b24bdac@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "85c3fa5b-d514-441e-bc3b-a6f78b24bdac@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23009.png b/assets/loadable/dress-spine/DressTexture/eye_23009.png new file mode 100644 index 0000000..05f3a22 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23009.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23009.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23009.png.meta new file mode 100644 index 0000000..e7323a1 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23009.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "55d7361b-b8a8-4b48-a0ee-87a9248e874e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "55d7361b-b8a8-4b48-a0ee-87a9248e874e@6c48a", + "displayName": "eye_23009", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "55d7361b-b8a8-4b48-a0ee-87a9248e874e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "55d7361b-b8a8-4b48-a0ee-87a9248e874e@f9941", + "displayName": "eye_23009", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2.5, + "offsetY": -2, + "trimX": 13, + "trimY": 37, + "width": 99, + "height": 60, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -49.5, + -30, + 0, + 49.5, + -30, + 0, + -49.5, + 30, + 0, + 49.5, + 30, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 93, + 112, + 93, + 13, + 33, + 112, + 33 + ], + "nuv": [ + 0.1, + 0.25384615384615383, + 0.8615384615384616, + 0.25384615384615383, + 0.1, + 0.7153846153846154, + 0.8615384615384616, + 0.7153846153846154 + ], + "minPos": [ + -49.5, + -30, + 0 + ], + "maxPos": [ + 49.5, + 30, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "55d7361b-b8a8-4b48-a0ee-87a9248e874e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "55d7361b-b8a8-4b48-a0ee-87a9248e874e@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23010.png b/assets/loadable/dress-spine/DressTexture/eye_23010.png new file mode 100644 index 0000000..e2f52c3 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23010.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23010.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23010.png.meta new file mode 100644 index 0000000..754317e --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23010.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44998e63-fc52-43c7-ac3f-f0b1edc09ed0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44998e63-fc52-43c7-ac3f-f0b1edc09ed0@6c48a", + "displayName": "eye_23010", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44998e63-fc52-43c7-ac3f-f0b1edc09ed0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "44998e63-fc52-43c7-ac3f-f0b1edc09ed0@f9941", + "displayName": "eye_23010", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 16, + "trimY": 45, + "width": 98, + "height": 41, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -49, + -20.5, + 0, + 49, + -20.5, + 0, + -49, + 20.5, + 0, + 49, + 20.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 16, + 85, + 114, + 85, + 16, + 44, + 114, + 44 + ], + "nuv": [ + 0.12307692307692308, + 0.3384615384615385, + 0.8769230769230769, + 0.3384615384615385, + 0.12307692307692308, + 0.6538461538461539, + 0.8769230769230769, + 0.6538461538461539 + ], + "minPos": [ + -49, + -20.5, + 0 + ], + "maxPos": [ + 49, + 20.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44998e63-fc52-43c7-ac3f-f0b1edc09ed0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44998e63-fc52-43c7-ac3f-f0b1edc09ed0@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23011.png b/assets/loadable/dress-spine/DressTexture/eye_23011.png new file mode 100644 index 0000000..79a0a79 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23011.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23011.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23011.png.meta new file mode 100644 index 0000000..0bdf6ad --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23011.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e0a3f806-045d-464c-ba34-34cc59010748", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e0a3f806-045d-464c-ba34-34cc59010748@6c48a", + "displayName": "eye_23011", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e0a3f806-045d-464c-ba34-34cc59010748", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e0a3f806-045d-464c-ba34-34cc59010748@f9941", + "displayName": "eye_23011", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 4.5, + "offsetY": 17, + "trimX": 9, + "trimY": 0, + "width": 121, + "height": 96, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -60.5, + -48, + 0, + 60.5, + -48, + 0, + -60.5, + 48, + 0, + 60.5, + 48, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 9, + 130, + 130, + 130, + 9, + 34, + 130, + 34 + ], + "nuv": [ + 0.06923076923076923, + 0.26153846153846155, + 1, + 0.26153846153846155, + 0.06923076923076923, + 1, + 1, + 1 + ], + "minPos": [ + -60.5, + -48, + 0 + ], + "maxPos": [ + 60.5, + 48, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e0a3f806-045d-464c-ba34-34cc59010748@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e0a3f806-045d-464c-ba34-34cc59010748@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23012.png b/assets/loadable/dress-spine/DressTexture/eye_23012.png new file mode 100644 index 0000000..9a296ea Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23012.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23012.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23012.png.meta new file mode 100644 index 0000000..3c1bc26 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23012.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c6501f7c-a4d5-4835-8e60-8c8cbabcd77f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c6501f7c-a4d5-4835-8e60-8c8cbabcd77f@6c48a", + "displayName": "eye_23012", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c6501f7c-a4d5-4835-8e60-8c8cbabcd77f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c6501f7c-a4d5-4835-8e60-8c8cbabcd77f@f9941", + "displayName": "eye_23012", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 28.5, + "trimX": 0, + "trimY": 7, + "width": 112, + "height": 114, + "rawWidth": 124, + "rawHeight": 185, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56, + -57, + 0, + 56, + -57, + 0, + -56, + 57, + 0, + 56, + 57, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 178, + 112, + 178, + 0, + 64, + 112, + 64 + ], + "nuv": [ + 0, + 0.34594594594594597, + 0.9032258064516129, + 0.34594594594594597, + 0, + 0.9621621621621622, + 0.9032258064516129, + 0.9621621621621622 + ], + "minPos": [ + -56, + -57, + 0 + ], + "maxPos": [ + 56, + 57, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c6501f7c-a4d5-4835-8e60-8c8cbabcd77f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c6501f7c-a4d5-4835-8e60-8c8cbabcd77f@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/eye_23013.png b/assets/loadable/dress-spine/DressTexture/eye_23013.png new file mode 100644 index 0000000..b7dc6d0 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/eye_23013.png differ diff --git a/assets/loadable/dress-spine/DressTexture/eye_23013.png.meta b/assets/loadable/dress-spine/DressTexture/eye_23013.png.meta new file mode 100644 index 0000000..3e07481 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/eye_23013.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3b9fd980-1322-47ad-8b34-93523f199aa5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3b9fd980-1322-47ad-8b34-93523f199aa5@6c48a", + "displayName": "eye_23013", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3b9fd980-1322-47ad-8b34-93523f199aa5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3b9fd980-1322-47ad-8b34-93523f199aa5@f9941", + "displayName": "eye_23013", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 11, + "trimY": 44, + "width": 108, + "height": 42, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -54, + -21, + 0, + 54, + -21, + 0, + -54, + 21, + 0, + 54, + 21, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 11, + 86, + 119, + 86, + 11, + 44, + 119, + 44 + ], + "nuv": [ + 0.08461538461538462, + 0.3384615384615385, + 0.9153846153846154, + 0.3384615384615385, + 0.08461538461538462, + 0.6615384615384615, + 0.9153846153846154, + 0.6615384615384615 + ], + "minPos": [ + -54, + -21, + 0 + ], + "maxPos": [ + 54, + 21, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3b9fd980-1322-47ad-8b34-93523f199aa5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3b9fd980-1322-47ad-8b34-93523f199aa5@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_20502.png b/assets/loadable/dress-spine/DressTexture/hat_20502.png new file mode 100644 index 0000000..e9465b5 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_20502.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_20502.png.meta b/assets/loadable/dress-spine/DressTexture/hat_20502.png.meta new file mode 100644 index 0000000..6e5f4a0 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_20502.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "25407a6d-6f0e-4c32-bb49-378f806e65fd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "25407a6d-6f0e-4c32-bb49-378f806e65fd@6c48a", + "displayName": "hat_20502", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "25407a6d-6f0e-4c32-bb49-378f806e65fd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "25407a6d-6f0e-4c32-bb49-378f806e65fd@f9941", + "displayName": "hat_20502", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12.5, + "offsetY": -18.5, + "trimX": 97, + "trimY": 164, + "width": 239, + "height": 170, + "rawWidth": 458, + "rawHeight": 461, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119.5, + -85, + 0, + 119.5, + -85, + 0, + -119.5, + 85, + 0, + 119.5, + 85, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 97, + 297, + 336, + 297, + 97, + 127, + 336, + 127 + ], + "nuv": [ + 0.21179039301310043, + 0.2754880694143167, + 0.7336244541484717, + 0.2754880694143167, + 0.21179039301310043, + 0.6442516268980477, + 0.7336244541484717, + 0.6442516268980477 + ], + "minPos": [ + -119.5, + -85, + 0 + ], + "maxPos": [ + 119.5, + 85, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "25407a6d-6f0e-4c32-bb49-378f806e65fd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "25407a6d-6f0e-4c32-bb49-378f806e65fd@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_20507.png b/assets/loadable/dress-spine/DressTexture/hat_20507.png new file mode 100644 index 0000000..1a3ed6b Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_20507.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_20507.png.meta b/assets/loadable/dress-spine/DressTexture/hat_20507.png.meta new file mode 100644 index 0000000..445c1cb --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_20507.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c2d7b6db-5491-492e-a0c2-e783f25936d6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c2d7b6db-5491-492e-a0c2-e783f25936d6@6c48a", + "displayName": "hat_20507", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c2d7b6db-5491-492e-a0c2-e783f25936d6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c2d7b6db-5491-492e-a0c2-e783f25936d6@f9941", + "displayName": "hat_20507", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 3, + "offsetY": 19, + "trimX": 26, + "trimY": 4, + "width": 205, + "height": 150, + "rawWidth": 251, + "rawHeight": 196, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -102.5, + -75, + 0, + 102.5, + -75, + 0, + -102.5, + 75, + 0, + 102.5, + 75, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 26, + 192, + 231, + 192, + 26, + 42, + 231, + 42 + ], + "nuv": [ + 0.10358565737051793, + 0.21428571428571427, + 0.9203187250996016, + 0.21428571428571427, + 0.10358565737051793, + 0.9795918367346939, + 0.9203187250996016, + 0.9795918367346939 + ], + "minPos": [ + -102.5, + -75, + 0 + ], + "maxPos": [ + 102.5, + 75, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c2d7b6db-5491-492e-a0c2-e783f25936d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c2d7b6db-5491-492e-a0c2-e783f25936d6@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_20517.png b/assets/loadable/dress-spine/DressTexture/hat_20517.png new file mode 100644 index 0000000..82fc3c0 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_20517.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_20517.png.meta b/assets/loadable/dress-spine/DressTexture/hat_20517.png.meta new file mode 100644 index 0000000..d17c050 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_20517.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea30db26-98e9-4e6f-a17f-f58207463730", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea30db26-98e9-4e6f-a17f-f58207463730@6c48a", + "displayName": "hat_20517", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea30db26-98e9-4e6f-a17f-f58207463730", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ea30db26-98e9-4e6f-a17f-f58207463730@f9941", + "displayName": "hat_20517", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": -51.5, + "trimX": 55, + "trimY": 129, + "width": 302, + "height": 306, + "rawWidth": 458, + "rawHeight": 461, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -151, + -153, + 0, + 151, + -153, + 0, + -151, + 153, + 0, + 151, + 153, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 55, + 332, + 357, + 332, + 55, + 26, + 357, + 26 + ], + "nuv": [ + 0.12008733624454149, + 0.05639913232104121, + 0.7794759825327511, + 0.05639913232104121, + 0.12008733624454149, + 0.720173535791757, + 0.7794759825327511, + 0.720173535791757 + ], + "minPos": [ + -151, + -153, + 0 + ], + "maxPos": [ + 151, + 153, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea30db26-98e9-4e6f-a17f-f58207463730@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea30db26-98e9-4e6f-a17f-f58207463730@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22001.png b/assets/loadable/dress-spine/DressTexture/hat_22001.png new file mode 100644 index 0000000..d49f295 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22001.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22001.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22001.png.meta new file mode 100644 index 0000000..a3475a4 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22001.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "92a8af89-b177-4cb8-b17c-a44f5e9f0c48", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "92a8af89-b177-4cb8-b17c-a44f5e9f0c48@6c48a", + "displayName": "hat_22001", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "92a8af89-b177-4cb8-b17c-a44f5e9f0c48", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "92a8af89-b177-4cb8-b17c-a44f5e9f0c48@f9941", + "displayName": "hat_22001", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 4.5, + "offsetY": 26.5, + "trimX": 33, + "trimY": 1, + "width": 194, + "height": 141, + "rawWidth": 251, + "rawHeight": 196, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -97, + -70.5, + 0, + 97, + -70.5, + 0, + -97, + 70.5, + 0, + 97, + 70.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 33, + 195, + 227, + 195, + 33, + 54, + 227, + 54 + ], + "nuv": [ + 0.13147410358565736, + 0.2755102040816326, + 0.9043824701195219, + 0.2755102040816326, + 0.13147410358565736, + 0.9948979591836735, + 0.9043824701195219, + 0.9948979591836735 + ], + "minPos": [ + -97, + -70.5, + 0 + ], + "maxPos": [ + 97, + 70.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "92a8af89-b177-4cb8-b17c-a44f5e9f0c48@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "92a8af89-b177-4cb8-b17c-a44f5e9f0c48@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22003.png b/assets/loadable/dress-spine/DressTexture/hat_22003.png new file mode 100644 index 0000000..713637c Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22003.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22003.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22003.png.meta new file mode 100644 index 0000000..ead6b42 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22003.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1bbdb4d7-8564-4a04-a764-16f9e4e512ba", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1bbdb4d7-8564-4a04-a764-16f9e4e512ba@6c48a", + "displayName": "hat_22003", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1bbdb4d7-8564-4a04-a764-16f9e4e512ba", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1bbdb4d7-8564-4a04-a764-16f9e4e512ba@f9941", + "displayName": "hat_22003", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 8, + "offsetY": 3, + "trimX": 31, + "trimY": 32, + "width": 205, + "height": 126, + "rawWidth": 251, + "rawHeight": 196, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -102.5, + -63, + 0, + 102.5, + -63, + 0, + -102.5, + 63, + 0, + 102.5, + 63, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 31, + 164, + 236, + 164, + 31, + 38, + 236, + 38 + ], + "nuv": [ + 0.12350597609561753, + 0.19387755102040816, + 0.9402390438247012, + 0.19387755102040816, + 0.12350597609561753, + 0.8367346938775511, + 0.9402390438247012, + 0.8367346938775511 + ], + "minPos": [ + -102.5, + -63, + 0 + ], + "maxPos": [ + 102.5, + 63, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1bbdb4d7-8564-4a04-a764-16f9e4e512ba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1bbdb4d7-8564-4a04-a764-16f9e4e512ba@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22006.png b/assets/loadable/dress-spine/DressTexture/hat_22006.png new file mode 100644 index 0000000..9c6dbb0 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22006.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22006.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22006.png.meta new file mode 100644 index 0000000..54dfc48 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c4f388da-bf69-4b40-ab1b-9b19f207faa6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4f388da-bf69-4b40-ab1b-9b19f207faa6@6c48a", + "displayName": "hat_22006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4f388da-bf69-4b40-ab1b-9b19f207faa6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c4f388da-bf69-4b40-ab1b-9b19f207faa6@f9941", + "displayName": "hat_22006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 13, + "trimX": 21, + "trimY": 7, + "width": 203, + "height": 156, + "rawWidth": 251, + "rawHeight": 196, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -101.5, + -78, + 0, + 101.5, + -78, + 0, + -101.5, + 78, + 0, + 101.5, + 78, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 21, + 189, + 224, + 189, + 21, + 33, + 224, + 33 + ], + "nuv": [ + 0.08366533864541832, + 0.1683673469387755, + 0.8924302788844621, + 0.1683673469387755, + 0.08366533864541832, + 0.9642857142857143, + 0.8924302788844621, + 0.9642857142857143 + ], + "minPos": [ + -101.5, + -78, + 0 + ], + "maxPos": [ + 101.5, + 78, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4f388da-bf69-4b40-ab1b-9b19f207faa6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4f388da-bf69-4b40-ab1b-9b19f207faa6@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22007.png b/assets/loadable/dress-spine/DressTexture/hat_22007.png new file mode 100644 index 0000000..c7a3f2b Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22007.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22007.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22007.png.meta new file mode 100644 index 0000000..fdc7657 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "610bcf03-65c2-4af0-9a09-c4a769e19449", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "610bcf03-65c2-4af0-9a09-c4a769e19449@6c48a", + "displayName": "hat_22007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "610bcf03-65c2-4af0-9a09-c4a769e19449", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "610bcf03-65c2-4af0-9a09-c4a769e19449@f9941", + "displayName": "hat_22007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17.5, + "offsetY": 19, + "trimX": 1, + "trimY": 14, + "width": 214, + "height": 130, + "rawWidth": 251, + "rawHeight": 196, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -107, + -65, + 0, + 107, + -65, + 0, + -107, + 65, + 0, + 107, + 65, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 182, + 215, + 182, + 1, + 52, + 215, + 52 + ], + "nuv": [ + 0.00398406374501992, + 0.2653061224489796, + 0.8565737051792829, + 0.2653061224489796, + 0.00398406374501992, + 0.9285714285714286, + 0.8565737051792829, + 0.9285714285714286 + ], + "minPos": [ + -107, + -65, + 0 + ], + "maxPos": [ + 107, + 65, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "610bcf03-65c2-4af0-9a09-c4a769e19449@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "610bcf03-65c2-4af0-9a09-c4a769e19449@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22008.png b/assets/loadable/dress-spine/DressTexture/hat_22008.png new file mode 100644 index 0000000..d89166e Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22008.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22008.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22008.png.meta new file mode 100644 index 0000000..46f7d32 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22008.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bf15a54f-6678-4a34-87e0-7fb6cd14de3c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bf15a54f-6678-4a34-87e0-7fb6cd14de3c@6c48a", + "displayName": "hat_22008", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bf15a54f-6678-4a34-87e0-7fb6cd14de3c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bf15a54f-6678-4a34-87e0-7fb6cd14de3c@f9941", + "displayName": "hat_22008", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5.5, + "offsetY": 43, + "trimX": 80, + "trimY": 3, + "width": 187, + "height": 200, + "rawWidth": 358, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -93.5, + -100, + 0, + 93.5, + -100, + 0, + -93.5, + 100, + 0, + 93.5, + 100, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 80, + 289, + 267, + 289, + 80, + 89, + 267, + 89 + ], + "nuv": [ + 0.22346368715083798, + 0.3047945205479452, + 0.7458100558659218, + 0.3047945205479452, + 0.22346368715083798, + 0.9897260273972602, + 0.7458100558659218, + 0.9897260273972602 + ], + "minPos": [ + -93.5, + -100, + 0 + ], + "maxPos": [ + 93.5, + 100, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bf15a54f-6678-4a34-87e0-7fb6cd14de3c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bf15a54f-6678-4a34-87e0-7fb6cd14de3c@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22009.png b/assets/loadable/dress-spine/DressTexture/hat_22009.png new file mode 100644 index 0000000..ae4f844 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22009.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22009.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22009.png.meta new file mode 100644 index 0000000..80d5f57 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22009.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "910222df-c04f-49e0-85d4-877abd564bf4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "910222df-c04f-49e0-85d4-877abd564bf4@6c48a", + "displayName": "hat_22009", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "910222df-c04f-49e0-85d4-877abd564bf4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "910222df-c04f-49e0-85d4-877abd564bf4@f9941", + "displayName": "hat_22009", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 10, + "offsetY": -24, + "trimX": 142, + "trimY": 174, + "width": 194, + "height": 161, + "rawWidth": 458, + "rawHeight": 461, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -97, + -80.5, + 0, + 97, + -80.5, + 0, + -97, + 80.5, + 0, + 97, + 80.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 142, + 287, + 336, + 287, + 142, + 126, + 336, + 126 + ], + "nuv": [ + 0.31004366812227074, + 0.27331887201735355, + 0.7336244541484717, + 0.27331887201735355, + 0.31004366812227074, + 0.6225596529284165, + 0.7336244541484717, + 0.6225596529284165 + ], + "minPos": [ + -97, + -80.5, + 0 + ], + "maxPos": [ + 97, + 80.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "910222df-c04f-49e0-85d4-877abd564bf4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "910222df-c04f-49e0-85d4-877abd564bf4@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22012.png b/assets/loadable/dress-spine/DressTexture/hat_22012.png new file mode 100644 index 0000000..860bcb2 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22012.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22012.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22012.png.meta new file mode 100644 index 0000000..f379ba1 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22012.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c26242c9-69b8-40e7-9613-29ff4a41e576", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c26242c9-69b8-40e7-9613-29ff4a41e576@6c48a", + "displayName": "hat_22012", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c26242c9-69b8-40e7-9613-29ff4a41e576", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c26242c9-69b8-40e7-9613-29ff4a41e576@f9941", + "displayName": "hat_22012", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17.5, + "offsetY": 26.5, + "trimX": 16, + "trimY": 6, + "width": 184, + "height": 131, + "rawWidth": 251, + "rawHeight": 196, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -92, + -65.5, + 0, + 92, + -65.5, + 0, + -92, + 65.5, + 0, + 92, + 65.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 16, + 190, + 200, + 190, + 16, + 59, + 200, + 59 + ], + "nuv": [ + 0.06374501992031872, + 0.3010204081632653, + 0.796812749003984, + 0.3010204081632653, + 0.06374501992031872, + 0.9693877551020408, + 0.796812749003984, + 0.9693877551020408 + ], + "minPos": [ + -92, + -65.5, + 0 + ], + "maxPos": [ + 92, + 65.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c26242c9-69b8-40e7-9613-29ff4a41e576@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c26242c9-69b8-40e7-9613-29ff4a41e576@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/hat_22013.png b/assets/loadable/dress-spine/DressTexture/hat_22013.png new file mode 100644 index 0000000..76ca73b Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/hat_22013.png differ diff --git a/assets/loadable/dress-spine/DressTexture/hat_22013.png.meta b/assets/loadable/dress-spine/DressTexture/hat_22013.png.meta new file mode 100644 index 0000000..9b212c3 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/hat_22013.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "34940d39-4fc0-4160-abe7-80444b52b891", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "34940d39-4fc0-4160-abe7-80444b52b891@6c48a", + "displayName": "hat_22013", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "34940d39-4fc0-4160-abe7-80444b52b891", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "34940d39-4fc0-4160-abe7-80444b52b891@f9941", + "displayName": "hat_22013", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 8.5, + "offsetY": -46.5, + "trimX": 87, + "trimY": 138, + "width": 301, + "height": 278, + "rawWidth": 458, + "rawHeight": 461, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -150.5, + -139, + 0, + 150.5, + -139, + 0, + -150.5, + 139, + 0, + 150.5, + 139, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 87, + 323, + 388, + 323, + 87, + 45, + 388, + 45 + ], + "nuv": [ + 0.18995633187772926, + 0.09761388286334056, + 0.8471615720524017, + 0.09761388286334056, + 0.18995633187772926, + 0.7006507592190889, + 0.8471615720524017, + 0.7006507592190889 + ], + "minPos": [ + -150.5, + -139, + 0 + ], + "maxPos": [ + 150.5, + 139, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "34940d39-4fc0-4160-abe7-80444b52b891@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "34940d39-4fc0-4160-abe7-80444b52b891@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_20504.png b/assets/loadable/dress-spine/DressTexture/tie_20504.png new file mode 100644 index 0000000..1bb6697 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_20504.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_20504.png.meta b/assets/loadable/dress-spine/DressTexture/tie_20504.png.meta new file mode 100644 index 0000000..d44171a --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_20504.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1324ed5c-e950-4af2-a3af-2af555a67223", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1324ed5c-e950-4af2-a3af-2af555a67223@6c48a", + "displayName": "tie_20504", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1324ed5c-e950-4af2-a3af-2af555a67223", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1324ed5c-e950-4af2-a3af-2af555a67223@f9941", + "displayName": "tie_20504", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": -22, + "trimX": 2, + "trimY": 45, + "width": 118, + "height": 84, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -59, + -42, + 0, + 59, + -42, + 0, + -59, + 42, + 0, + 59, + 42, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 85, + 120, + 85, + 2, + 1, + 120, + 1 + ], + "nuv": [ + 0.015384615384615385, + 0.007692307692307693, + 0.9230769230769231, + 0.007692307692307693, + 0.015384615384615385, + 0.6538461538461539, + 0.9230769230769231, + 0.6538461538461539 + ], + "minPos": [ + -59, + -42, + 0 + ], + "maxPos": [ + 59, + 42, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1324ed5c-e950-4af2-a3af-2af555a67223@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1324ed5c-e950-4af2-a3af-2af555a67223@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_20509.png b/assets/loadable/dress-spine/DressTexture/tie_20509.png new file mode 100644 index 0000000..ac0c777 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_20509.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_20509.png.meta b/assets/loadable/dress-spine/DressTexture/tie_20509.png.meta new file mode 100644 index 0000000..d990c3f --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_20509.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea955dd2-4af2-49d2-aca1-cc220913e9ae", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea955dd2-4af2-49d2-aca1-cc220913e9ae@6c48a", + "displayName": "tie_20509", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea955dd2-4af2-49d2-aca1-cc220913e9ae", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ea955dd2-4af2-49d2-aca1-cc220913e9ae@f9941", + "displayName": "tie_20509", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": -13, + "trimX": 41, + "trimY": 60, + "width": 51, + "height": 36, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -25.5, + -18, + 0, + 25.5, + -18, + 0, + -25.5, + 18, + 0, + 25.5, + 18, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 41, + 70, + 92, + 70, + 41, + 34, + 92, + 34 + ], + "nuv": [ + 0.3153846153846154, + 0.26153846153846155, + 0.7076923076923077, + 0.26153846153846155, + 0.3153846153846154, + 0.5384615384615384, + 0.7076923076923077, + 0.5384615384615384 + ], + "minPos": [ + -25.5, + -18, + 0 + ], + "maxPos": [ + 25.5, + 18, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea955dd2-4af2-49d2-aca1-cc220913e9ae@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea955dd2-4af2-49d2-aca1-cc220913e9ae@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_20519.png b/assets/loadable/dress-spine/DressTexture/tie_20519.png new file mode 100644 index 0000000..8c6c910 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_20519.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_20519.png.meta b/assets/loadable/dress-spine/DressTexture/tie_20519.png.meta new file mode 100644 index 0000000..d2bd4a4 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_20519.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "285bbd02-a6ec-434e-83ed-50edf69c1d4e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "285bbd02-a6ec-434e-83ed-50edf69c1d4e@6c48a", + "displayName": "tie_20519", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "285bbd02-a6ec-434e-83ed-50edf69c1d4e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "285bbd02-a6ec-434e-83ed-50edf69c1d4e@f9941", + "displayName": "tie_20519", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7.5, + "offsetY": -24.5, + "trimX": 22, + "trimY": 51, + "width": 71, + "height": 77, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -35.5, + -38.5, + 0, + 35.5, + -38.5, + 0, + -35.5, + 38.5, + 0, + 35.5, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 22, + 79, + 93, + 79, + 22, + 2, + 93, + 2 + ], + "nuv": [ + 0.16923076923076924, + 0.015384615384615385, + 0.7153846153846154, + 0.015384615384615385, + 0.16923076923076924, + 0.6076923076923076, + 0.7153846153846154, + 0.6076923076923076 + ], + "minPos": [ + -35.5, + -38.5, + 0 + ], + "maxPos": [ + 35.5, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "285bbd02-a6ec-434e-83ed-50edf69c1d4e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "285bbd02-a6ec-434e-83ed-50edf69c1d4e@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24001.png b/assets/loadable/dress-spine/DressTexture/tie_24001.png new file mode 100644 index 0000000..a3c7c78 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24001.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24001.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24001.png.meta new file mode 100644 index 0000000..7961bba --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24001.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2c896a59-295d-4ac6-854b-033597bb5e02", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2c896a59-295d-4ac6-854b-033597bb5e02@6c48a", + "displayName": "tie_24001", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2c896a59-295d-4ac6-854b-033597bb5e02", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2c896a59-295d-4ac6-854b-033597bb5e02@f9941", + "displayName": "tie_24001", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -7, + "trimX": 40, + "trimY": 49, + "width": 50, + "height": 46, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -25, + -23, + 0, + 25, + -23, + 0, + -25, + 23, + 0, + 25, + 23, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 40, + 81, + 90, + 81, + 40, + 35, + 90, + 35 + ], + "nuv": [ + 0.3076923076923077, + 0.2692307692307692, + 0.6923076923076923, + 0.2692307692307692, + 0.3076923076923077, + 0.6230769230769231, + 0.6923076923076923, + 0.6230769230769231 + ], + "minPos": [ + -25, + -23, + 0 + ], + "maxPos": [ + 25, + 23, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2c896a59-295d-4ac6-854b-033597bb5e02@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2c896a59-295d-4ac6-854b-033597bb5e02@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24002.png b/assets/loadable/dress-spine/DressTexture/tie_24002.png new file mode 100644 index 0000000..8a68400 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24002.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24002.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24002.png.meta new file mode 100644 index 0000000..693dc3a --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "99c0235d-bb34-4b74-9159-0bc62c2a4c54", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "99c0235d-bb34-4b74-9159-0bc62c2a4c54@6c48a", + "displayName": "tie_24002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "99c0235d-bb34-4b74-9159-0bc62c2a4c54", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "99c0235d-bb34-4b74-9159-0bc62c2a4c54@f9941", + "displayName": "tie_24002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -7, + "trimX": 41, + "trimY": 49, + "width": 49, + "height": 46, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -24.5, + -23, + 0, + 24.5, + -23, + 0, + -24.5, + 23, + 0, + 24.5, + 23, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 41, + 81, + 90, + 81, + 41, + 35, + 90, + 35 + ], + "nuv": [ + 0.3153846153846154, + 0.2692307692307692, + 0.6923076923076923, + 0.2692307692307692, + 0.3153846153846154, + 0.6230769230769231, + 0.6923076923076923, + 0.6230769230769231 + ], + "minPos": [ + -24.5, + -23, + 0 + ], + "maxPos": [ + 24.5, + 23, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "99c0235d-bb34-4b74-9159-0bc62c2a4c54@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "99c0235d-bb34-4b74-9159-0bc62c2a4c54@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24003.png b/assets/loadable/dress-spine/DressTexture/tie_24003.png new file mode 100644 index 0000000..0d1bdb4 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24003.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24003.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24003.png.meta new file mode 100644 index 0000000..faae215 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24003.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2d598f9b-f4fa-49a7-9ce8-7cd69095dd05", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2d598f9b-f4fa-49a7-9ce8-7cd69095dd05@6c48a", + "displayName": "tie_24003", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2d598f9b-f4fa-49a7-9ce8-7cd69095dd05", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2d598f9b-f4fa-49a7-9ce8-7cd69095dd05@f9941", + "displayName": "tie_24003", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 2, + "trimX": 41, + "trimY": 51, + "width": 47, + "height": 24, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -23.5, + -12, + 0, + 23.5, + -12, + 0, + -23.5, + 12, + 0, + 23.5, + 12, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 41, + 79, + 88, + 79, + 41, + 55, + 88, + 55 + ], + "nuv": [ + 0.3153846153846154, + 0.4230769230769231, + 0.676923076923077, + 0.4230769230769231, + 0.3153846153846154, + 0.6076923076923076, + 0.676923076923077, + 0.6076923076923076 + ], + "minPos": [ + -23.5, + -12, + 0 + ], + "maxPos": [ + 23.5, + 12, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2d598f9b-f4fa-49a7-9ce8-7cd69095dd05@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2d598f9b-f4fa-49a7-9ce8-7cd69095dd05@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24004.png b/assets/loadable/dress-spine/DressTexture/tie_24004.png new file mode 100644 index 0000000..4cced49 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24004.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24004.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24004.png.meta new file mode 100644 index 0000000..d039b38 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24004.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "15fa9427-31dd-4e0c-8544-d3ba5c417b1b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "15fa9427-31dd-4e0c-8544-d3ba5c417b1b@6c48a", + "displayName": "tie_24004", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "15fa9427-31dd-4e0c-8544-d3ba5c417b1b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "15fa9427-31dd-4e0c-8544-d3ba5c417b1b@f9941", + "displayName": "tie_24004", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 2, + "trimX": 41, + "trimY": 51, + "width": 47, + "height": 24, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -23.5, + -12, + 0, + 23.5, + -12, + 0, + -23.5, + 12, + 0, + 23.5, + 12, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 41, + 79, + 88, + 79, + 41, + 55, + 88, + 55 + ], + "nuv": [ + 0.3153846153846154, + 0.4230769230769231, + 0.676923076923077, + 0.4230769230769231, + 0.3153846153846154, + 0.6076923076923076, + 0.676923076923077, + 0.6076923076923076 + ], + "minPos": [ + -23.5, + -12, + 0 + ], + "maxPos": [ + 23.5, + 12, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "15fa9427-31dd-4e0c-8544-d3ba5c417b1b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "15fa9427-31dd-4e0c-8544-d3ba5c417b1b@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24005.png b/assets/loadable/dress-spine/DressTexture/tie_24005.png new file mode 100644 index 0000000..72828d4 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24005.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24005.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24005.png.meta new file mode 100644 index 0000000..84800e9 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24005.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee9b76f9-c686-4c77-9551-f54ed9dc21bb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee9b76f9-c686-4c77-9551-f54ed9dc21bb@6c48a", + "displayName": "tie_24005", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee9b76f9-c686-4c77-9551-f54ed9dc21bb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ee9b76f9-c686-4c77-9551-f54ed9dc21bb@f9941", + "displayName": "tie_24005", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5.5, + "offsetY": -20, + "trimX": 29, + "trimY": 60, + "width": 61, + "height": 50, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -30.5, + -25, + 0, + 30.5, + -25, + 0, + -30.5, + 25, + 0, + 30.5, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 29, + 70, + 90, + 70, + 29, + 20, + 90, + 20 + ], + "nuv": [ + 0.2230769230769231, + 0.15384615384615385, + 0.6923076923076923, + 0.15384615384615385, + 0.2230769230769231, + 0.5384615384615384, + 0.6923076923076923, + 0.5384615384615384 + ], + "minPos": [ + -30.5, + -25, + 0 + ], + "maxPos": [ + 30.5, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee9b76f9-c686-4c77-9551-f54ed9dc21bb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee9b76f9-c686-4c77-9551-f54ed9dc21bb@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24006.png b/assets/loadable/dress-spine/DressTexture/tie_24006.png new file mode 100644 index 0000000..f733067 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24006.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24006.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24006.png.meta new file mode 100644 index 0000000..f050e8f --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0c0dc41e-8dec-4f08-ad63-8c6e1ba6abac", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0c0dc41e-8dec-4f08-ad63-8c6e1ba6abac@6c48a", + "displayName": "tie_24006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0c0dc41e-8dec-4f08-ad63-8c6e1ba6abac", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0c0dc41e-8dec-4f08-ad63-8c6e1ba6abac@f9941", + "displayName": "tie_24006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": -19.5, + "trimX": 21, + "trimY": 56, + "width": 80, + "height": 57, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -40, + -28.5, + 0, + 40, + -28.5, + 0, + -40, + 28.5, + 0, + 40, + 28.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 21, + 74, + 101, + 74, + 21, + 17, + 101, + 17 + ], + "nuv": [ + 0.16153846153846155, + 0.13076923076923078, + 0.7769230769230769, + 0.13076923076923078, + 0.16153846153846155, + 0.5692307692307692, + 0.7769230769230769, + 0.5692307692307692 + ], + "minPos": [ + -40, + -28.5, + 0 + ], + "maxPos": [ + 40, + 28.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0c0dc41e-8dec-4f08-ad63-8c6e1ba6abac@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0c0dc41e-8dec-4f08-ad63-8c6e1ba6abac@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24007.png b/assets/loadable/dress-spine/DressTexture/tie_24007.png new file mode 100644 index 0000000..8a3df46 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24007.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24007.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24007.png.meta new file mode 100644 index 0000000..eb70943 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2e34e1e8-2d57-4c38-9eaa-f1d50873b195", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2e34e1e8-2d57-4c38-9eaa-f1d50873b195@6c48a", + "displayName": "tie_24007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2e34e1e8-2d57-4c38-9eaa-f1d50873b195", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2e34e1e8-2d57-4c38-9eaa-f1d50873b195@f9941", + "displayName": "tie_24007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8.5, + "offsetY": -16, + "trimX": 8, + "trimY": 44, + "width": 97, + "height": 74, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48.5, + -37, + 0, + 48.5, + -37, + 0, + -48.5, + 37, + 0, + 48.5, + 37, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 8, + 86, + 105, + 86, + 8, + 12, + 105, + 12 + ], + "nuv": [ + 0.06153846153846154, + 0.09230769230769231, + 0.8076923076923077, + 0.09230769230769231, + 0.06153846153846154, + 0.6615384615384615, + 0.8076923076923077, + 0.6615384615384615 + ], + "minPos": [ + -48.5, + -37, + 0 + ], + "maxPos": [ + 48.5, + 37, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2e34e1e8-2d57-4c38-9eaa-f1d50873b195@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2e34e1e8-2d57-4c38-9eaa-f1d50873b195@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24011.png b/assets/loadable/dress-spine/DressTexture/tie_24011.png new file mode 100644 index 0000000..4cb1c96 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24011.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24011.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24011.png.meta new file mode 100644 index 0000000..dfc47ee --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24011.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d7502b86-c110-4866-b27d-f9a727cc2ba8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d7502b86-c110-4866-b27d-f9a727cc2ba8@6c48a", + "displayName": "tie_24011", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d7502b86-c110-4866-b27d-f9a727cc2ba8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d7502b86-c110-4866-b27d-f9a727cc2ba8@f9941", + "displayName": "tie_24011", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7.5, + "offsetY": -13.5, + "trimX": 1, + "trimY": 38, + "width": 113, + "height": 81, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56.5, + -40.5, + 0, + 56.5, + -40.5, + 0, + -56.5, + 40.5, + 0, + 56.5, + 40.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 92, + 114, + 92, + 1, + 11, + 114, + 11 + ], + "nuv": [ + 0.007692307692307693, + 0.08461538461538462, + 0.8769230769230769, + 0.08461538461538462, + 0.007692307692307693, + 0.7076923076923077, + 0.8769230769230769, + 0.7076923076923077 + ], + "minPos": [ + -56.5, + -40.5, + 0 + ], + "maxPos": [ + 56.5, + 40.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d7502b86-c110-4866-b27d-f9a727cc2ba8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d7502b86-c110-4866-b27d-f9a727cc2ba8@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24012.png b/assets/loadable/dress-spine/DressTexture/tie_24012.png new file mode 100644 index 0000000..29d1753 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24012.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24012.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24012.png.meta new file mode 100644 index 0000000..fc69d5c --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24012.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "36022a84-9e65-481c-9bc9-a65de3988e25", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "36022a84-9e65-481c-9bc9-a65de3988e25@6c48a", + "displayName": "tie_24012", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "36022a84-9e65-481c-9bc9-a65de3988e25", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "36022a84-9e65-481c-9bc9-a65de3988e25@f9941", + "displayName": "tie_24012", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -9.5, + "offsetY": -6, + "trimX": 10, + "trimY": 39, + "width": 91, + "height": 64, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45.5, + -32, + 0, + 45.5, + -32, + 0, + -45.5, + 32, + 0, + 45.5, + 32, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 10, + 91, + 101, + 91, + 10, + 27, + 101, + 27 + ], + "nuv": [ + 0.07692307692307693, + 0.2076923076923077, + 0.7769230769230769, + 0.2076923076923077, + 0.07692307692307693, + 0.7, + 0.7769230769230769, + 0.7 + ], + "minPos": [ + -45.5, + -32, + 0 + ], + "maxPos": [ + 45.5, + 32, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "36022a84-9e65-481c-9bc9-a65de3988e25@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "36022a84-9e65-481c-9bc9-a65de3988e25@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24013.png b/assets/loadable/dress-spine/DressTexture/tie_24013.png new file mode 100644 index 0000000..72627c9 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24013.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24013.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24013.png.meta new file mode 100644 index 0000000..f31c22b --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24013.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e407945d-9e28-43a2-8a70-b71e2448d0af", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e407945d-9e28-43a2-8a70-b71e2448d0af@6c48a", + "displayName": "tie_24013", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e407945d-9e28-43a2-8a70-b71e2448d0af", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e407945d-9e28-43a2-8a70-b71e2448d0af@f9941", + "displayName": "tie_24013", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -8.5, + "trimX": 21, + "trimY": 53, + "width": 86, + "height": 41, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -43, + -20.5, + 0, + 43, + -20.5, + 0, + -43, + 20.5, + 0, + 43, + 20.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 21, + 77, + 107, + 77, + 21, + 36, + 107, + 36 + ], + "nuv": [ + 0.16153846153846155, + 0.27692307692307694, + 0.823076923076923, + 0.27692307692307694, + 0.16153846153846155, + 0.5923076923076923, + 0.823076923076923, + 0.5923076923076923 + ], + "minPos": [ + -43, + -20.5, + 0 + ], + "maxPos": [ + 43, + 20.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e407945d-9e28-43a2-8a70-b71e2448d0af@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e407945d-9e28-43a2-8a70-b71e2448d0af@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24014.png b/assets/loadable/dress-spine/DressTexture/tie_24014.png new file mode 100644 index 0000000..ebb39a8 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24014.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24014.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24014.png.meta new file mode 100644 index 0000000..046064e --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24014.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "280a6503-5b87-4df4-9dfd-f1d811198738", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "280a6503-5b87-4df4-9dfd-f1d811198738@6c48a", + "displayName": "tie_24014", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "280a6503-5b87-4df4-9dfd-f1d811198738", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "280a6503-5b87-4df4-9dfd-f1d811198738@f9941", + "displayName": "tie_24014", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": -7.5, + "trimX": 1, + "trimY": 41, + "width": 118, + "height": 63, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -59, + -31.5, + 0, + 59, + -31.5, + 0, + -59, + 31.5, + 0, + 59, + 31.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 89, + 119, + 89, + 1, + 26, + 119, + 26 + ], + "nuv": [ + 0.007692307692307693, + 0.2, + 0.9153846153846154, + 0.2, + 0.007692307692307693, + 0.6846153846153846, + 0.9153846153846154, + 0.6846153846153846 + ], + "minPos": [ + -59, + -31.5, + 0 + ], + "maxPos": [ + 59, + 31.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "280a6503-5b87-4df4-9dfd-f1d811198738@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "280a6503-5b87-4df4-9dfd-f1d811198738@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24015.png b/assets/loadable/dress-spine/DressTexture/tie_24015.png new file mode 100644 index 0000000..3faa2ab Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24015.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24015.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24015.png.meta new file mode 100644 index 0000000..c0941d6 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24015.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d276be93-ebb8-46b6-813f-4d735ca774b6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d276be93-ebb8-46b6-813f-4d735ca774b6@6c48a", + "displayName": "tie_24015", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d276be93-ebb8-46b6-813f-4d735ca774b6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d276be93-ebb8-46b6-813f-4d735ca774b6@f9941", + "displayName": "tie_24015", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 2, + "trimX": 1, + "trimY": 14, + "width": 124, + "height": 98, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -62, + -49, + 0, + 62, + -49, + 0, + -62, + 49, + 0, + 62, + 49, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 1, + 116, + 125, + 116, + 1, + 18, + 125, + 18 + ], + "nuv": [ + 0.007692307692307693, + 0.13846153846153847, + 0.9615384615384616, + 0.13846153846153847, + 0.007692307692307693, + 0.8923076923076924, + 0.9615384615384616, + 0.8923076923076924 + ], + "minPos": [ + -62, + -49, + 0 + ], + "maxPos": [ + 62, + 49, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d276be93-ebb8-46b6-813f-4d735ca774b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d276be93-ebb8-46b6-813f-4d735ca774b6@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24016.png b/assets/loadable/dress-spine/DressTexture/tie_24016.png new file mode 100644 index 0000000..1c976a5 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24016.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24016.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24016.png.meta new file mode 100644 index 0000000..e3d6e7e --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24016.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c7da638f-ad25-4f45-b0a3-5fea35a48eef", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c7da638f-ad25-4f45-b0a3-5fea35a48eef@6c48a", + "displayName": "tie_24016", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c7da638f-ad25-4f45-b0a3-5fea35a48eef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c7da638f-ad25-4f45-b0a3-5fea35a48eef@f9941", + "displayName": "tie_24016", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": -12.5, + "trimX": 10, + "trimY": 45, + "width": 90, + "height": 65, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -32.5, + 0, + 45, + -32.5, + 0, + -45, + 32.5, + 0, + 45, + 32.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 10, + 85, + 100, + 85, + 10, + 20, + 100, + 20 + ], + "nuv": [ + 0.07692307692307693, + 0.15384615384615385, + 0.7692307692307693, + 0.15384615384615385, + 0.07692307692307693, + 0.6538461538461539, + 0.7692307692307693, + 0.6538461538461539 + ], + "minPos": [ + -45, + -32.5, + 0 + ], + "maxPos": [ + 45, + 32.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c7da638f-ad25-4f45-b0a3-5fea35a48eef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c7da638f-ad25-4f45-b0a3-5fea35a48eef@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24017.png b/assets/loadable/dress-spine/DressTexture/tie_24017.png new file mode 100644 index 0000000..53c2ce5 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24017.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24017.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24017.png.meta new file mode 100644 index 0000000..2e96ad1 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24017.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "377d00b5-d2d4-4d3f-bdd2-7b167563ff00", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "377d00b5-d2d4-4d3f-bdd2-7b167563ff00@6c48a", + "displayName": "tie_24017", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "377d00b5-d2d4-4d3f-bdd2-7b167563ff00", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "377d00b5-d2d4-4d3f-bdd2-7b167563ff00@f9941", + "displayName": "tie_24017", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": -18, + "trimX": 0, + "trimY": 52, + "width": 129, + "height": 62, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -64.5, + -31, + 0, + 64.5, + -31, + 0, + -64.5, + 31, + 0, + 64.5, + 31, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 78, + 129, + 78, + 0, + 16, + 129, + 16 + ], + "nuv": [ + 0, + 0.12307692307692308, + 0.9923076923076923, + 0.12307692307692308, + 0, + 0.6, + 0.9923076923076923, + 0.6 + ], + "minPos": [ + -64.5, + -31, + 0 + ], + "maxPos": [ + 64.5, + 31, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "377d00b5-d2d4-4d3f-bdd2-7b167563ff00@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "377d00b5-d2d4-4d3f-bdd2-7b167563ff00@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24018.png b/assets/loadable/dress-spine/DressTexture/tie_24018.png new file mode 100644 index 0000000..1f3965e Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24018.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24018.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24018.png.meta new file mode 100644 index 0000000..f9c5725 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24018.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "667aa14f-8915-4fc2-9a83-c1d2a7ef177f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "667aa14f-8915-4fc2-9a83-c1d2a7ef177f@6c48a", + "displayName": "tie_24018", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "667aa14f-8915-4fc2-9a83-c1d2a7ef177f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "667aa14f-8915-4fc2-9a83-c1d2a7ef177f@f9941", + "displayName": "tie_24018", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": -13, + "trimX": 7, + "trimY": 34, + "width": 113, + "height": 88, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56.5, + -44, + 0, + 56.5, + -44, + 0, + -56.5, + 44, + 0, + 56.5, + 44, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 7, + 96, + 120, + 96, + 7, + 8, + 120, + 8 + ], + "nuv": [ + 0.05384615384615385, + 0.06153846153846154, + 0.9230769230769231, + 0.06153846153846154, + 0.05384615384615385, + 0.7384615384615385, + 0.9230769230769231, + 0.7384615384615385 + ], + "minPos": [ + -56.5, + -44, + 0 + ], + "maxPos": [ + 56.5, + 44, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "667aa14f-8915-4fc2-9a83-c1d2a7ef177f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "667aa14f-8915-4fc2-9a83-c1d2a7ef177f@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24019.png b/assets/loadable/dress-spine/DressTexture/tie_24019.png new file mode 100644 index 0000000..493cc67 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24019.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24019.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24019.png.meta new file mode 100644 index 0000000..08e00a2 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24019.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a4ddeefb-99a3-4550-94b1-e4ba9d3e689d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a4ddeefb-99a3-4550-94b1-e4ba9d3e689d@6c48a", + "displayName": "tie_24019", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a4ddeefb-99a3-4550-94b1-e4ba9d3e689d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a4ddeefb-99a3-4550-94b1-e4ba9d3e689d@f9941", + "displayName": "tie_24019", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8.5, + "offsetY": -7.5, + "trimX": 12, + "trimY": 36, + "width": 89, + "height": 73, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -44.5, + -36.5, + 0, + 44.5, + -36.5, + 0, + -44.5, + 36.5, + 0, + 44.5, + 36.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 12, + 94, + 101, + 94, + 12, + 21, + 101, + 21 + ], + "nuv": [ + 0.09230769230769231, + 0.16153846153846155, + 0.7769230769230769, + 0.16153846153846155, + 0.09230769230769231, + 0.7230769230769231, + 0.7769230769230769, + 0.7230769230769231 + ], + "minPos": [ + -44.5, + -36.5, + 0 + ], + "maxPos": [ + 44.5, + 36.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a4ddeefb-99a3-4550-94b1-e4ba9d3e689d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a4ddeefb-99a3-4550-94b1-e4ba9d3e689d@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24020.png b/assets/loadable/dress-spine/DressTexture/tie_24020.png new file mode 100644 index 0000000..e04af6d Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24020.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24020.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24020.png.meta new file mode 100644 index 0000000..d562c7b --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24020.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9422fb93-4f1d-4d1f-bf19-97e75133d855", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9422fb93-4f1d-4d1f-bf19-97e75133d855@6c48a", + "displayName": "tie_24020", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9422fb93-4f1d-4d1f-bf19-97e75133d855", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9422fb93-4f1d-4d1f-bf19-97e75133d855@f9941", + "displayName": "tie_24020", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -3, + "trimX": 13, + "trimY": 47, + "width": 100, + "height": 42, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50, + -21, + 0, + 50, + -21, + 0, + -50, + 21, + 0, + 50, + 21, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 13, + 83, + 113, + 83, + 13, + 41, + 113, + 41 + ], + "nuv": [ + 0.1, + 0.3153846153846154, + 0.8692307692307693, + 0.3153846153846154, + 0.1, + 0.6384615384615384, + 0.8692307692307693, + 0.6384615384615384 + ], + "minPos": [ + -50, + -21, + 0 + ], + "maxPos": [ + 50, + 21, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9422fb93-4f1d-4d1f-bf19-97e75133d855@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9422fb93-4f1d-4d1f-bf19-97e75133d855@6c48a" + } +} diff --git a/assets/loadable/dress-spine/DressTexture/tie_24021.png b/assets/loadable/dress-spine/DressTexture/tie_24021.png new file mode 100644 index 0000000..5044a31 Binary files /dev/null and b/assets/loadable/dress-spine/DressTexture/tie_24021.png differ diff --git a/assets/loadable/dress-spine/DressTexture/tie_24021.png.meta b/assets/loadable/dress-spine/DressTexture/tie_24021.png.meta new file mode 100644 index 0000000..c2b5265 --- /dev/null +++ b/assets/loadable/dress-spine/DressTexture/tie_24021.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37a43d0d-a035-4530-aee2-718851f2628b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37a43d0d-a035-4530-aee2-718851f2628b@6c48a", + "displayName": "tie_24021", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37a43d0d-a035-4530-aee2-718851f2628b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "37a43d0d-a035-4530-aee2-718851f2628b@f9941", + "displayName": "tie_24021", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": -19, + "trimX": 0, + "trimY": 49, + "width": 114, + "height": 70, + "rawWidth": 130, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -57, + -35, + 0, + 57, + -35, + 0, + -57, + 35, + 0, + 57, + 35, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 81, + 114, + 81, + 0, + 11, + 114, + 11 + ], + "nuv": [ + 0, + 0.08461538461538462, + 0.8769230769230769, + 0.08461538461538462, + 0, + 0.6230769230769231, + 0.8769230769230769, + 0.6230769230769231 + ], + "minPos": [ + -57, + -35, + 0 + ], + "maxPos": [ + 57, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37a43d0d-a035-4530-aee2-718851f2628b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37a43d0d-a035-4530-aee2-718851f2628b@6c48a" + } +} diff --git a/assets/loadable/pet-spine/BaiLuWang.prefab b/assets/loadable/pet-spine/BaiLuWang.prefab index b16744e..ded8e6d 100644 --- a/assets/loadable/pet-spine/BaiLuWang.prefab +++ b/assets/loadable/pet-spine/BaiLuWang.prefab @@ -203,21 +203,21 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 111.00640869140625, - "y": 123.00108337402344, + "x": 111.83940887451172, + "y": 120.9849624633789, "z": 0 }, "_lrot": { "__type__": "cc.Quat", "x": 0, "y": 0, - "z": 0.00041781928666364334, - "w": 0.999999912713518 + "z": -0.006875854323746662, + "w": 0.9999763610342582 }, "_lscale": { "__type__": "cc.Vec3", - "x": 0.9999999915024762, - "y": 0.9999999915336062, + "x": 1.000000022754141, + "y": 1.000000020807481, "z": 1 }, "_mobility": 0, @@ -226,7 +226,7 @@ "__type__": "cc.Vec3", "x": 0, "y": 0, - "z": 0.047878564843037395 + "z": -0.7879210751511427 }, "_id": "" }, @@ -371,7 +371,7 @@ "__expectedType__": "sp.SkeletonData" }, "defaultSkin": "default", - "defaultAnimation": "", + "defaultAnimation": "idle", "_premultipliedAlpha": false, "_timeScale": 1, "_preCacheMode": 0, diff --git a/assets/local-test.meta b/assets/local-test.meta new file mode 100644 index 0000000..59dd286 --- /dev/null +++ b/assets/local-test.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d2734048-8ed9-412e-82b9-257a2a57358f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/local-test/LocalTest.scene b/assets/local-test/LocalTest.scene new file mode 100644 index 0000000..eb0feba --- /dev/null +++ b/assets/local-test/LocalTest.scene @@ -0,0 +1,781 @@ +[ + { + "__type__": "cc.SceneAsset", + "_name": "LocalTest", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "scene": { + "__id__": 1 + } + }, + { + "__type__": "cc.Scene", + "_name": "LocalTest", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "autoReleaseAssets": false, + "_globals": { + "__id__": 17 + }, + "_id": "97897335-3b91-40fb-8233-5d20cecd2d8c" + }, + { + "__type__": "cc.Node", + "_name": "Main Light", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.06397656665577071, + "y": -0.44608233363525845, + "z": -0.8239028751062036, + "w": -0.3436591377065261 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -117.894, + "y": -194.909, + "z": 38.562 + }, + "_id": "c0y6F5f+pAvI805TdmxIjx" + }, + { + "__type__": "cc.DirectionalLight", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": null, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 250, + "b": 240, + "a": 255 + }, + "_useColorTemperature": false, + "_colorTemperature": 6550, + "_staticSettings": { + "__id__": 4 + }, + "_visibility": -325058561, + "_illuminanceHDR": 65000, + "_illuminance": 65000, + "_illuminanceLDR": 1.6927083333333335, + "_shadowEnabled": true, + "_shadowPcf": 2, + "_shadowBias": 0.00001, + "_shadowNormalBias": 0, + "_shadowSaturation": 1, + "_shadowDistance": 50, + "_shadowInvisibleOcclusionRange": 200, + "_csmLevel": 4, + "_csmLayerLambda": 0.75, + "_csmOptimizationMode": 2, + "_csmAdvancedOptions": false, + "_csmLayersTransition": false, + "_csmTransitionRange": 0.05, + "_shadowFixedArea": false, + "_shadowNear": 0.1, + "_shadowFar": 10, + "_shadowOrthoSize": 5, + "_id": "597uMYCbhEtJQc0ffJlcgA" + }, + { + "__type__": "cc.StaticLightSettings", + "_baked": false, + "_editorOnly": false, + "_castShadow": true + }, + { + "__type__": "cc.Node", + "_name": "Main Camera", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -10, + "y": 10, + "z": 10 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.27781593346944056, + "y": -0.36497167621709875, + "z": -0.11507512748638377, + "w": 0.8811195706053617 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -35, + "y": -45, + "z": 0 + }, + "_id": "c9DMICJLFO5IeO07EPon7U" + }, + { + "__type__": "cc.Camera", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 5 + }, + "_enabled": true, + "__prefab": null, + "_projection": 1, + "_priority": 0, + "_fov": 45, + "_fovAxis": 0, + "_orthoHeight": 10, + "_near": 1, + "_far": 1000, + "_color": { + "__type__": "cc.Color", + "r": 51, + "g": 51, + "b": 51, + "a": 255 + }, + "_depth": 1, + "_stencil": 0, + "_clearFlags": 14, + "_rect": { + "__type__": "cc.Rect", + "x": 0, + "y": 0, + "width": 1, + "height": 1 + }, + "_aperture": 19, + "_shutter": 7, + "_iso": 0, + "_screenScale": 1, + "_visibility": 1107296256, + "_targetTexture": null, + "_postProcess": null, + "_usePostProcess": false, + "_cameraType": -1, + "_trackingType": 0, + "_id": "7dWQTpwS5LrIHnc1zAPUtf" + }, + { + "__type__": "ec518X0CMdP54zXMX4vBkVd", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 5 + }, + "_enabled": true, + "__prefab": null, + "canvas": { + "__id__": 8 + }, + "_id": "38l0pjwrJBY5IWAtZ/sVgj" + }, + { + "__type__": "cc.Canvas", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": true, + "__prefab": null, + "_cameraComponent": { + "__id__": 11 + }, + "_alignCanvasWithScreen": true, + "_id": "3b8MPfr9JKfKahIfXWlonH" + }, + { + "__type__": "cc.Node", + "_name": "Canvas", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 10 + }, + { + "__id__": 12 + } + ], + "_active": true, + "_components": [ + { + "__id__": 15 + }, + { + "__id__": 8 + }, + { + "__id__": 16 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 1280, + "y": 720, + "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": "4fnolCS+9CJrC0XKOrdgcx" + }, + { + "__type__": "cc.Node", + "_name": "Camera", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 1000 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "66SInXQDtPF61ForJNsRJ9" + }, + { + "__type__": "cc.Camera", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": null, + "_projection": 0, + "_priority": 1073741824, + "_fov": 45, + "_fovAxis": 0, + "_orthoHeight": 1482.7722772277227, + "_near": 1, + "_far": 2000, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_depth": 1, + "_stencil": 0, + "_clearFlags": 6, + "_rect": { + "__type__": "cc.Rect", + "x": 0, + "y": 0, + "width": 1, + "height": 1 + }, + "_aperture": 19, + "_shutter": 7, + "_iso": 0, + "_screenScale": 1, + "_visibility": 1115684864, + "_targetTexture": null, + "_postProcess": null, + "_usePostProcess": false, + "_cameraType": -1, + "_trackingType": 0, + "_id": "0c+jYK4vxA7Ztu+1DrFO8W" + }, + { + "__type__": "cc.Node", + "_name": "Node", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + }, + { + "__id__": 14 + } + ], + "_prefab": null, + "_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": "a1RI/yWKdCy6iT2wTz7Nwf" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "322zKZYAFGzJyWfq68j7rS" + }, + { + "__type__": "2dcdaMWHxxDcqjfJAXM9hjz", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "bundle": "", + "path": "", + "_remoteUrl": "", + "_id": "a12yWEOQNC3qswnuZd8PS8" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 2560, + "height": 1440 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "47dltY1g5BZ57pd8XEVB2e" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": true, + "__prefab": null, + "_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": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "4cN2WpBxxEML3iSKr5vENT" + }, + { + "__type__": "cc.SceneGlobals", + "ambient": { + "__id__": 18 + }, + "shadows": { + "__id__": 19 + }, + "_skybox": { + "__id__": 20 + }, + "fog": { + "__id__": 21 + }, + "octree": { + "__id__": 22 + }, + "skin": { + "__id__": 23 + }, + "lightProbeInfo": { + "__id__": 24 + }, + "postSettings": { + "__id__": 25 + }, + "bakedWithStationaryMainLight": false, + "bakedWithHighpLightmap": false + }, + { + "__type__": "cc.AmbientInfo", + "_skyColorHDR": { + "__type__": "cc.Vec4", + "x": 0.2, + "y": 0.5, + "z": 0.8, + "w": 0.520833125 + }, + "_skyColor": { + "__type__": "cc.Vec4", + "x": 0.2, + "y": 0.5, + "z": 0.8, + "w": 0.520833125 + }, + "_skyIllumHDR": 20000, + "_skyIllum": 20000, + "_groundAlbedoHDR": { + "__type__": "cc.Vec4", + "x": 0.2, + "y": 0.2, + "z": 0.2, + "w": 1 + }, + "_groundAlbedo": { + "__type__": "cc.Vec4", + "x": 0.2, + "y": 0.2, + "z": 0.2, + "w": 1 + }, + "_skyColorLDR": { + "__type__": "cc.Vec4", + "x": 0.452588, + "y": 0.607642, + "z": 0.755699, + "w": 0 + }, + "_skyIllumLDR": 0.8, + "_groundAlbedoLDR": { + "__type__": "cc.Vec4", + "x": 0.618555, + "y": 0.577848, + "z": 0.544564, + "w": 0 + } + }, + { + "__type__": "cc.ShadowsInfo", + "_enabled": true, + "_type": 1, + "_normal": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1, + "z": 0 + }, + "_distance": 0, + "_planeBias": 1, + "_shadowColor": { + "__type__": "cc.Color", + "r": 76, + "g": 76, + "b": 76, + "a": 255 + }, + "_maxReceived": 4, + "_size": { + "__type__": "cc.Vec2", + "x": 2048, + "y": 2048 + } + }, + { + "__type__": "cc.SkyboxInfo", + "_envLightingType": 1, + "_envmapHDR": { + "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0", + "__expectedType__": "cc.TextureCube" + }, + "_envmap": { + "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0", + "__expectedType__": "cc.TextureCube" + }, + "_envmapLDR": { + "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0", + "__expectedType__": "cc.TextureCube" + }, + "_diffuseMapHDR": null, + "_diffuseMapLDR": null, + "_enabled": true, + "_useHDR": true, + "_editableMaterial": null, + "_reflectionHDR": null, + "_reflectionLDR": null, + "_rotationAngle": 0 + }, + { + "__type__": "cc.FogInfo", + "_type": 0, + "_fogColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_enabled": false, + "_fogDensity": 0.3, + "_fogStart": 0.5, + "_fogEnd": 300, + "_fogAtten": 5, + "_fogTop": 1.5, + "_fogRange": 1.2, + "_accurate": false + }, + { + "__type__": "cc.OctreeInfo", + "_enabled": false, + "_minPos": { + "__type__": "cc.Vec3", + "x": -1024, + "y": -1024, + "z": -1024 + }, + "_maxPos": { + "__type__": "cc.Vec3", + "x": 1024, + "y": 1024, + "z": 1024 + }, + "_depth": 8 + }, + { + "__type__": "cc.SkinInfo", + "_enabled": false, + "_blurRadius": 0.01, + "_sssIntensity": 3 + }, + { + "__type__": "cc.LightProbeInfo", + "_giScale": 1, + "_giSamples": 1024, + "_bounces": 2, + "_reduceRinging": 0, + "_showProbe": true, + "_showWireframe": true, + "_showConvex": false, + "_data": null, + "_lightProbeSphereVolume": 1 + }, + { + "__type__": "cc.PostSettingsInfo", + "_toneMappingType": 0 + } +] \ No newline at end of file diff --git a/assets/local-test/LocalTest.scene.meta b/assets/local-test/LocalTest.scene.meta new file mode 100644 index 0000000..e4f9862 --- /dev/null +++ b/assets/local-test/LocalTest.scene.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.1.50", + "importer": "scene", + "imported": true, + "uuid": "97897335-3b91-40fb-8233-5d20cecd2d8c", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/local-test/LocalTest.ts b/assets/local-test/LocalTest.ts new file mode 100644 index 0000000..ae283fe --- /dev/null +++ b/assets/local-test/LocalTest.ts @@ -0,0 +1,70 @@ +import { _decorator, Canvas, Component, DynamicAtlasManager, profiler } from "cc"; +const { ccclass, property } = _decorator; +import { PetManager } from "../games/scripts/pets"; + +DynamicAtlasManager.instance.enabled = false; +@ccclass("LocalTest") +export class LocalTest extends Component { + @property(Canvas) + private canvas: Canvas = null; + + protected onLoad(): void { + // this.remoteSprite.remoteUrl = "https://i.imgs.ovh/2025/10/28/7KzDD1.png"; + // this.remoteSprite.node.destroy(); + + // let items = []; + // for (let index = 0; index < 10; index++) { + // let item = instantiate(this.remoteSprite.node); + // item.parent = this.node; + // items.push(item); + // } + // setTimeout(() => { + // console.log("3秒后销毁节点"); + // items.forEach((element) => { + // element.destroy(); + // }); + // this.remoteSprite.remoteUrl = null; + // }, 3000); + // setTimeout(() => { + // console.log("3秒后替换贴图"); + // this.remoteSprite.remoteUrl = "https://i.imgs.ovh/2025/10/28/7KAsRH.png"; + // }, 3000); + // setTimeout(() => { + // console.log("45秒后重新加载节点"); + // this.remoteSprite.remoteUrl = null; + // }, 6000); + // 显示Coocs Creator 内存信息 + // sys. + profiler.showStats(); + + setTimeout(() => { + void this.testLoad(); + }, 5000); + } + + protected async testLoad() { + // let prefab: Prefab = null; + // let dialogBox: Node = null; + // prefab = await ResManager.getInstance().loadAsset({ + // bundle: "games", + // path: "prefabs/uis/CommonDialogBox", + // type: Prefab, + // }); + // dialogBox = instantiate(prefab); + // dialogBox.parent = this.canvas.node; + // setTimeout(() => { + // dialogBox.destroy(); + // }, 5000); + // setTimeout(() => { + // ResManager.getInstance().releaseAsset(prefab); + // }, 10000); + + const petNode = await PetManager.getInstance().getPet("BaiLuWang"); + petNode.parent = this.canvas.node; + + setTimeout(() => { + petNode.destroy(); + }, 5000); + // UIManager.getInstance().openUI(CommonToast, "这是一条测试消息"); + } +} diff --git a/assets/local-test/LocalTest.ts.meta b/assets/local-test/LocalTest.ts.meta new file mode 100644 index 0000000..8d3a558 --- /dev/null +++ b/assets/local-test/LocalTest.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "ec5185f4-08c7-4fe7-8cd7-317e2f06455d", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/scenes/StartUp.scene b/assets/scenes/StartUp.scene index 105263a..432af00 100644 --- a/assets/scenes/StartUp.scene +++ b/assets/scenes/StartUp.scene @@ -26,13 +26,13 @@ "__id__": 7 }, { - "__id__": 143 + "__id__": 256 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 145 + "__id__": 258 }, "_lpos": { "__type__": "cc.Vec3", @@ -63,7 +63,7 @@ }, "autoReleaseAssets": false, "_globals": { - "__id__": 146 + "__id__": 259 }, "_id": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" }, @@ -273,29 +273,35 @@ "__id__": 19 }, { - "__id__": 41 - } - ], - "_active": true, - "_components": [ - { - "__id__": 139 - }, - { - "__id__": 140 + "__id__": 43 }, { "__id__": 141 }, { - "__id__": 142 + "__id__": 239 + } + ], + "_active": true, + "_components": [ + { + "__id__": 252 + }, + { + "__id__": 253 + }, + { + "__id__": 254 + }, + { + "__id__": 255 } ], "_prefab": null, "_lpos": { "__type__": "cc.Vec3", - "x": 1280, - "y": 720, + "x": 320, + "y": 569, "z": 0 }, "_lrot": { @@ -380,7 +386,7 @@ "_priority": 1073741824, "_fov": 45, "_fovAxis": 0, - "_orthoHeight": 800.855614973262, + "_orthoHeight": 569, "_near": 1, "_far": 2000, "_color": { @@ -404,7 +410,7 @@ "_shutter": 7, "_iso": 0, "_screenScale": 1, - "_visibility": 41943040, + "_visibility": 1115684864, "_targetTexture": null, "_postProcess": null, "_usePostProcess": false, @@ -550,18 +556,21 @@ }, { "__id__": 23 + }, + { + "__id__": 26 } ], - "_active": false, + "_active": true, "_components": [ - { - "__id__": 38 - }, - { - "__id__": 39 - }, { "__id__": 40 + }, + { + "__id__": 41 + }, + { + "__id__": 42 } ], "_prefab": null, @@ -596,7 +605,7 @@ }, { "__type__": "cc.Node", - "_name": "Background", + "_name": "SpriteSplash", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -640,7 +649,7 @@ "y": 0, "z": 0 }, - "_id": "22fiBOjZFGe7hoZJ0afFfo" + "_id": "3dreQGt0BHeaLlBdqcniR5" }, { "__type__": "cc.UITransform", @@ -654,15 +663,15 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 1440 + "width": 640, + "height": 1300 }, "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, "y": 0.5 }, - "_id": "89AYeDsyJPOoCqXJacYjjY" + "_id": "d2mTExrVVPdq3nzupFvcF2" }, { "__type__": "cc.Sprite", @@ -677,6 +686,115 @@ "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 139, + "g": 169, + "b": 78, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@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": "d28q7Ih2xFB6S43K7EvKiC" + }, + { + "__type__": "cc.Node", + "_name": "Background", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 19 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 24 + }, + { + "__id__": 25 + } + ], + "_prefab": null, + "_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": "22fiBOjZFGe7hoZJ0afFfo" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 23 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 640, + "height": 1136 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "89AYeDsyJPOoCqXJacYjjY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 23 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", "r": 255, @@ -685,7 +803,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "e6173673-4a0d-4545-be41-76cb80da3cee@f9941", + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@62714", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -700,7 +818,10 @@ "_fillRange": 0, "_isTrimmedMode": true, "_useGrayscale": false, - "_atlas": null, + "_atlas": { + "__uuid__": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "__expectedType__": "cc.SpriteAtlas" + }, "_id": "e58P0BswZMFYx0Y0Wi3rqn" }, { @@ -713,26 +834,26 @@ }, "_children": [ { - "__id__": 24 + "__id__": 27 }, { - "__id__": 33 + "__id__": 35 } ], "_active": true, "_components": [ { - "__id__": 36 + "__id__": 38 }, { - "__id__": 37 + "__id__": 39 } ], "_prefab": null, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -634.981, + "y": -490.5, "z": 0 }, "_lrot": { @@ -764,26 +885,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 23 + "__id__": 26 }, "_children": [ { - "__id__": 25 + "__id__": 28 } ], "_active": true, "_components": [ - { - "__id__": 29 - }, - { - "__id__": 30 - }, - { - "__id__": 31 - }, { "__id__": 32 + }, + { + "__id__": 33 + }, + { + "__id__": 34 } ], "_prefab": null, @@ -822,26 +940,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 24 + "__id__": 27 }, "_children": [], "_active": true, "_components": [ { - "__id__": 26 + "__id__": 29 }, { - "__id__": 27 + "__id__": 30 }, { - "__id__": 28 + "__id__": 31 } ], "_prefab": null, "_lpos": { "__type__": "cc.Vec3", - "x": -657, - "y": 3, + "x": -222, + "y": 0, "z": 0 }, "_lrot": { @@ -873,14 +991,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 28 }, "_enabled": true, "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 525.6, - "height": 65 + "width": 0, + "height": 24 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -895,7 +1013,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 28 }, "_enabled": true, "__prefab": null, @@ -910,7 +1028,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "b68f550d-c76a-4a72-b7e6-e83eb8bb9e14@f9941", + "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -934,7 +1052,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 28 }, "_enabled": true, "__prefab": null, @@ -964,14 +1082,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 27 }, "_enabled": true, "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 1320, - "height": 77 + "width": 450, + "height": 30 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -986,7 +1104,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 27 }, "_enabled": true, "__prefab": null, @@ -1001,7 +1119,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "7585d804-9cea-494b-9f1b-f713e6599bdb@f9941", + "__uuid__": "9fd900dd-221b-4f89-8f2c-fba34243c835@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -1025,72 +1143,42 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 27 }, "_enabled": true, "__prefab": null, "_barSprite": { - "__id__": 27 + "__id__": 30 }, "_mode": 0, - "_totalLength": 1314, - "_progress": 0.4, + "_totalLength": 444, + "_progress": 0, "_reverse": false, "_id": "b1ohBp9mJDgp6dbTn1hZM3" }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": null, - "_alignFlags": 40, - "_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": 500, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "eeUjfs4TlAX4sOAozM7J4d" - }, { "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 23 + "__id__": 26 }, "_children": [], "_active": true, "_components": [ { - "__id__": 34 + "__id__": 36 }, { - "__id__": 35 + "__id__": 37 } ], "_prefab": null, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": -42.257, "z": 0 }, "_lrot": { @@ -1122,13 +1210,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 35 }, "_enabled": true, "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 235.159912109375, + "width": 73.73995971679688, "height": 50.4 }, "_anchorPoint": { @@ -1144,7 +1232,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 35 }, "_enabled": true, "__prefab": null, @@ -1158,11 +1246,11 @@ "b": 255, "a": 255 }, - "_string": "Loading...75%", + "_string": "加载中...", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, + "_actualFontSize": 20, + "_fontSize": 20, "_fontFamily": "Arial", "_lineHeight": 40, "_overflow": 0, @@ -1209,13 +1297,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 23 + "__id__": 26 }, "_enabled": true, "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 1320, + "width": 450, "height": 77 }, "_anchorPoint": { @@ -1231,7 +1319,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 23 + "__id__": 26 }, "_enabled": true, "__prefab": null, @@ -1240,7 +1328,7 @@ "_left": 470, "_right": 470, "_top": 50, - "_bottom": 46.519000000000005, + "_bottom": 40, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1267,8 +1355,8 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 1440 + "width": 640, + "height": 1138 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1318,10 +1406,10 @@ "_enabled": true, "__prefab": null, "label": { - "__id__": 35 + "__id__": 37 }, "progressBar": { - "__id__": 31 + "__id__": 34 }, "_id": "235bCgk+FEE6+zwrYl9MTc" }, @@ -1335,25 +1423,25 @@ }, "_children": [ { - "__id__": 42 + "__id__": 44 }, { - "__id__": 65 + "__id__": 67 }, { - "__id__": 95 + "__id__": 97 } ], "_active": false, "_components": [ - { - "__id__": 136 - }, - { - "__id__": 137 - }, { "__id__": 138 + }, + { + "__id__": 139 + }, + { + "__id__": 140 } ], "_prefab": null, @@ -1392,23 +1480,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 41 + "__id__": 43 }, "_children": [ { - "__id__": 43 + "__id__": 45 }, { - "__id__": 47 + "__id__": 49 }, { - "__id__": 50 + "__id__": 52 } ], "_active": true, "_components": [ { - "__id__": 64 + "__id__": 66 } ], "_prefab": null, @@ -1447,19 +1535,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 42 + "__id__": 44 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 44 - }, - { - "__id__": 45 - }, { "__id__": 46 + }, + { + "__id__": 47 + }, + { + "__id__": 48 } ], "_prefab": null, @@ -1498,7 +1586,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 45 }, "_enabled": true, "__prefab": null, @@ -1520,7 +1608,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 45 }, "_enabled": true, "__prefab": null, @@ -1556,7 +1644,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 45 }, "_enabled": true, "__prefab": null, @@ -1606,16 +1694,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 42 + "__id__": 44 }, "_children": [], "_active": true, "_components": [ { - "__id__": 48 + "__id__": 50 }, { - "__id__": 49 + "__id__": 51 } ], "_prefab": null, @@ -1654,7 +1742,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 49 }, "_enabled": true, "__prefab": null, @@ -1676,7 +1764,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 49 }, "_enabled": true, "__prefab": null, @@ -1738,20 +1826,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 42 + "__id__": 44 }, "_children": [ { - "__id__": 51 + "__id__": 53 }, { - "__id__": 57 + "__id__": 59 } ], "_active": true, "_components": [ { - "__id__": 63 + "__id__": 65 } ], "_prefab": null, @@ -1790,20 +1878,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 50 + "__id__": 52 }, "_children": [ { - "__id__": 52 + "__id__": 54 } ], "_active": true, "_components": [ { - "__id__": 55 + "__id__": 57 }, { - "__id__": 56 + "__id__": 58 } ], "_prefab": null, @@ -1842,16 +1930,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 51 + "__id__": 53 }, "_children": [], "_active": true, "_components": [ { - "__id__": 53 + "__id__": 55 }, { - "__id__": 54 + "__id__": 56 } ], "_prefab": null, @@ -1890,7 +1978,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 54 }, "_enabled": true, "__prefab": null, @@ -1912,7 +2000,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 54 }, "_enabled": true, "__prefab": null, @@ -1974,7 +2062,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 53 }, "_enabled": true, "__prefab": null, @@ -1996,7 +2084,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 53 }, "_enabled": true, "__prefab": null, @@ -2032,20 +2120,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 50 + "__id__": 52 }, "_children": [ { - "__id__": 58 + "__id__": 60 } ], "_active": true, "_components": [ { - "__id__": 61 + "__id__": 63 }, { - "__id__": 62 + "__id__": 64 } ], "_prefab": null, @@ -2084,16 +2172,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 59 }, "_children": [], "_active": true, "_components": [ { - "__id__": 59 + "__id__": 61 }, { - "__id__": 60 + "__id__": 62 } ], "_prefab": null, @@ -2132,7 +2220,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 60 }, "_enabled": true, "__prefab": null, @@ -2154,7 +2242,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 60 }, "_enabled": true, "__prefab": null, @@ -2216,7 +2304,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 59 }, "_enabled": true, "__prefab": null, @@ -2238,7 +2326,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 59 }, "_enabled": true, "__prefab": null, @@ -2274,7 +2362,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 52 }, "_enabled": true, "__prefab": null, @@ -2296,7 +2384,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 44 }, "_enabled": true, "__prefab": null, @@ -2318,26 +2406,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 41 + "__id__": 43 }, "_children": [ { - "__id__": 66 + "__id__": 68 }, { - "__id__": 73 + "__id__": 75 }, { - "__id__": 80 + "__id__": 82 }, { - "__id__": 87 + "__id__": 89 } ], "_active": true, "_components": [ { - "__id__": 94 + "__id__": 96 } ], "_prefab": null, @@ -2376,23 +2464,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 65 + "__id__": 67 }, "_children": [ { - "__id__": 67 + "__id__": 69 } ], "_active": true, "_components": [ - { - "__id__": 70 - }, - { - "__id__": 71 - }, { "__id__": 72 + }, + { + "__id__": 73 + }, + { + "__id__": 74 } ], "_prefab": null, @@ -2431,16 +2519,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 66 + "__id__": 68 }, "_children": [], "_active": true, "_components": [ { - "__id__": 68 + "__id__": 70 }, { - "__id__": 69 + "__id__": 71 } ], "_prefab": null, @@ -2479,7 +2567,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 69 }, "_enabled": true, "__prefab": null, @@ -2501,7 +2589,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 69 }, "_enabled": true, "__prefab": null, @@ -2563,7 +2651,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 68 }, "_enabled": true, "__prefab": null, @@ -2585,7 +2673,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 68 }, "_enabled": true, "__prefab": null, @@ -2621,7 +2709,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 68 }, "_enabled": true, "__prefab": null, @@ -2671,23 +2759,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 65 + "__id__": 67 }, "_children": [ { - "__id__": 74 + "__id__": 76 } ], "_active": true, "_components": [ - { - "__id__": 77 - }, - { - "__id__": 78 - }, { "__id__": 79 + }, + { + "__id__": 80 + }, + { + "__id__": 81 } ], "_prefab": null, @@ -2726,16 +2814,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 73 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 75 + "__id__": 77 }, { - "__id__": 76 + "__id__": 78 } ], "_prefab": null, @@ -2774,7 +2862,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 76 }, "_enabled": true, "__prefab": null, @@ -2796,7 +2884,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 76 }, "_enabled": true, "__prefab": null, @@ -2858,7 +2946,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 73 + "__id__": 75 }, "_enabled": true, "__prefab": null, @@ -2880,7 +2968,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 73 + "__id__": 75 }, "_enabled": true, "__prefab": null, @@ -2916,7 +3004,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 73 + "__id__": 75 }, "_enabled": true, "__prefab": null, @@ -2966,23 +3054,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 65 + "__id__": 67 }, "_children": [ { - "__id__": 81 + "__id__": 83 } ], "_active": true, "_components": [ - { - "__id__": 84 - }, - { - "__id__": 85 - }, { "__id__": 86 + }, + { + "__id__": 87 + }, + { + "__id__": 88 } ], "_prefab": null, @@ -3021,16 +3109,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 80 + "__id__": 82 }, "_children": [], "_active": true, "_components": [ { - "__id__": 82 + "__id__": 84 }, { - "__id__": 83 + "__id__": 85 } ], "_prefab": null, @@ -3069,7 +3157,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 83 }, "_enabled": true, "__prefab": null, @@ -3091,7 +3179,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 83 }, "_enabled": true, "__prefab": null, @@ -3153,7 +3241,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 82 }, "_enabled": true, "__prefab": null, @@ -3175,7 +3263,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 82 }, "_enabled": true, "__prefab": null, @@ -3211,7 +3299,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 82 }, "_enabled": true, "__prefab": null, @@ -3261,23 +3349,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 65 + "__id__": 67 }, "_children": [ { - "__id__": 88 + "__id__": 90 } ], "_active": true, "_components": [ - { - "__id__": 91 - }, - { - "__id__": 92 - }, { "__id__": 93 + }, + { + "__id__": 94 + }, + { + "__id__": 95 } ], "_prefab": null, @@ -3316,16 +3404,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 87 + "__id__": 89 }, "_children": [], "_active": true, "_components": [ { - "__id__": 89 + "__id__": 91 }, { - "__id__": 90 + "__id__": 92 } ], "_prefab": null, @@ -3364,7 +3452,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 88 + "__id__": 90 }, "_enabled": true, "__prefab": null, @@ -3386,7 +3474,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 88 + "__id__": 90 }, "_enabled": true, "__prefab": null, @@ -3448,7 +3536,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 89 }, "_enabled": true, "__prefab": null, @@ -3470,7 +3558,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 89 }, "_enabled": true, "__prefab": null, @@ -3506,7 +3594,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 89 }, "_enabled": true, "__prefab": null, @@ -3556,7 +3644,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 65 + "__id__": 67 }, "_enabled": true, "__prefab": null, @@ -3578,26 +3666,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 41 + "__id__": 43 }, "_children": [ { - "__id__": 96 + "__id__": 98 }, { - "__id__": 108 + "__id__": 110 }, { - "__id__": 120 + "__id__": 122 }, { - "__id__": 132 + "__id__": 134 } ], "_active": true, "_components": [ { - "__id__": 135 + "__id__": 137 } ], "_prefab": null, @@ -3636,26 +3724,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 95 + "__id__": 97 }, "_children": [ { - "__id__": 97 + "__id__": 99 }, { - "__id__": 100 + "__id__": 102 }, { - "__id__": 103 + "__id__": 105 } ], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 108 }, { - "__id__": 107 + "__id__": 109 } ], "_prefab": null, @@ -3694,16 +3782,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 96 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ { - "__id__": 98 + "__id__": 100 }, { - "__id__": 99 + "__id__": 101 } ], "_prefab": null, @@ -3742,7 +3830,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 99 }, "_enabled": true, "__prefab": null, @@ -3764,7 +3852,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 99 }, "_enabled": true, "__prefab": null, @@ -3826,16 +3914,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 96 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ { - "__id__": 101 + "__id__": 103 }, { - "__id__": 102 + "__id__": 104 } ], "_prefab": null, @@ -3874,7 +3962,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 100 + "__id__": 102 }, "_enabled": true, "__prefab": null, @@ -3896,7 +3984,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 100 + "__id__": 102 }, "_enabled": true, "__prefab": null, @@ -3958,16 +4046,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 96 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ { - "__id__": 104 + "__id__": 106 }, { - "__id__": 105 + "__id__": 107 } ], "_prefab": null, @@ -4006,7 +4094,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 105 }, "_enabled": true, "__prefab": null, @@ -4028,7 +4116,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 105 }, "_enabled": true, "__prefab": null, @@ -4090,7 +4178,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 96 + "__id__": 98 }, "_enabled": true, "__prefab": null, @@ -4112,7 +4200,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 96 + "__id__": 98 }, "_enabled": true, "__prefab": null, @@ -4148,26 +4236,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 95 + "__id__": 97 }, "_children": [ { - "__id__": 109 + "__id__": 111 }, { - "__id__": 112 + "__id__": 114 }, { - "__id__": 115 + "__id__": 117 } ], "_active": true, "_components": [ { - "__id__": 118 + "__id__": 120 }, { - "__id__": 119 + "__id__": 121 } ], "_prefab": null, @@ -4206,16 +4294,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 110 }, "_children": [], "_active": true, "_components": [ { - "__id__": 110 + "__id__": 112 }, { - "__id__": 111 + "__id__": 113 } ], "_prefab": null, @@ -4254,7 +4342,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 111 }, "_enabled": true, "__prefab": null, @@ -4276,7 +4364,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 111 }, "_enabled": true, "__prefab": null, @@ -4338,16 +4426,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 110 }, "_children": [], "_active": true, "_components": [ { - "__id__": 113 + "__id__": 115 }, { - "__id__": 114 + "__id__": 116 } ], "_prefab": null, @@ -4386,7 +4474,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 114 }, "_enabled": true, "__prefab": null, @@ -4408,7 +4496,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 114 }, "_enabled": true, "__prefab": null, @@ -4470,16 +4558,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 110 }, "_children": [], "_active": true, "_components": [ { - "__id__": 116 + "__id__": 118 }, { - "__id__": 117 + "__id__": 119 } ], "_prefab": null, @@ -4518,7 +4606,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 115 + "__id__": 117 }, "_enabled": true, "__prefab": null, @@ -4540,7 +4628,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 115 + "__id__": 117 }, "_enabled": true, "__prefab": null, @@ -4602,7 +4690,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 110 }, "_enabled": true, "__prefab": null, @@ -4624,7 +4712,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 110 }, "_enabled": true, "__prefab": null, @@ -4660,26 +4748,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 95 + "__id__": 97 }, "_children": [ { - "__id__": 121 + "__id__": 123 }, { - "__id__": 124 + "__id__": 126 }, { - "__id__": 127 + "__id__": 129 } ], "_active": true, "_components": [ { - "__id__": 130 + "__id__": 132 }, { - "__id__": 131 + "__id__": 133 } ], "_prefab": null, @@ -4718,16 +4806,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 120 + "__id__": 122 }, "_children": [], "_active": true, "_components": [ { - "__id__": 122 + "__id__": 124 }, { - "__id__": 123 + "__id__": 125 } ], "_prefab": null, @@ -4766,7 +4854,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 123 }, "_enabled": true, "__prefab": null, @@ -4788,7 +4876,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 123 }, "_enabled": true, "__prefab": null, @@ -4850,16 +4938,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 120 + "__id__": 122 }, "_children": [], "_active": true, "_components": [ { - "__id__": 125 + "__id__": 127 }, { - "__id__": 126 + "__id__": 128 } ], "_prefab": null, @@ -4898,7 +4986,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 126 }, "_enabled": true, "__prefab": null, @@ -4920,7 +5008,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 126 }, "_enabled": true, "__prefab": null, @@ -4982,16 +5070,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 120 + "__id__": 122 }, "_children": [], "_active": true, "_components": [ { - "__id__": 128 + "__id__": 130 }, { - "__id__": 129 + "__id__": 131 } ], "_prefab": null, @@ -5030,7 +5118,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 127 + "__id__": 129 }, "_enabled": true, "__prefab": null, @@ -5052,7 +5140,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 127 + "__id__": 129 }, "_enabled": true, "__prefab": null, @@ -5114,7 +5202,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 122 }, "_enabled": true, "__prefab": null, @@ -5136,7 +5224,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 122 }, "_enabled": true, "__prefab": null, @@ -5172,16 +5260,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 95 + "__id__": 97 }, "_children": [], "_active": true, "_components": [ { - "__id__": 133 + "__id__": 135 }, { - "__id__": 134 + "__id__": 136 } ], "_prefab": null, @@ -5220,7 +5308,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 132 + "__id__": 134 }, "_enabled": true, "__prefab": null, @@ -5242,7 +5330,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 132 + "__id__": 134 }, "_enabled": true, "__prefab": null, @@ -5278,7 +5366,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 97 }, "_enabled": true, "__prefab": null, @@ -5300,7 +5388,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 43 }, "_enabled": true, "__prefab": null, @@ -5322,7 +5410,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 43 }, "_enabled": true, "__prefab": null, @@ -5361,7 +5449,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 43 }, "_enabled": true, "__prefab": null, @@ -5385,6 +5473,4274 @@ "_lockFlags": 0, "_id": "6cYhGTb9dDLqRB5M0dNs4M" }, + { + "__type__": "cc.Node", + "_name": "DefaultNetworkMask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 142 + }, + { + "__id__": 165 + }, + { + "__id__": 195 + } + ], + "_active": false, + "_components": [ + { + "__id__": 236 + }, + { + "__id__": 237 + }, + { + "__id__": 238 + } + ], + "_prefab": null, + "_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": "b0vtJaArVPaasr3SHRs8q1" + }, + { + "__type__": "cc.Node", + "_name": "TopBar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 141 + }, + "_children": [ + { + "__id__": 143 + }, + { + "__id__": 147 + }, + { + "__id__": 150 + } + ], + "_active": true, + "_components": [ + { + "__id__": 164 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 320, + "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": "95hVvqJrdDi72hgViaYUzr" + }, + { + "__type__": "cc.Node", + "_name": "BackButton", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 144 + }, + { + "__id__": 145 + }, + { + "__id__": 146 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -450, + "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": "37wb3LW/1Dpr6nDaTt/YG9" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 143 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 50, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "998IYUYFpAdp8HLJXqpOUM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 143 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 80, + "g": 80, + "b": 80, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "77rfOD2mNOXZrKAO1WnxEL" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 143 + }, + "_enabled": true, + "__prefab": null, + "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": "f2ZpVsab5FwrmE1x9dEo4W" + }, + { + "__type__": "cc.Node", + "_name": "ShopTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 148 + }, + { + "__id__": 149 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -300, + "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": "2ewoNHB5VJa7ngPZa+8y0U" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 84.076171875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "03Pji6QPpEbKQGWpA7/LCx" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Shop", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "1bRP2SIm5L+YZypXExikzj" + }, + { + "__type__": "cc.Node", + "_name": "CurrencyArea", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [ + { + "__id__": 151 + }, + { + "__id__": 157 + } + ], + "_active": true, + "_components": [ + { + "__id__": 163 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 300, + "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": "9ejDQ92GRCHr4edVx+xjVS" + }, + { + "__type__": "cc.Node", + "_name": "CoinDisplay", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 150 + }, + "_children": [ + { + "__id__": 152 + } + ], + "_active": true, + "_components": [ + { + "__id__": 155 + }, + { + "__id__": 156 + } + ], + "_prefab": null, + "_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": "26I6j5rb1MrqqNcvkf3lzE" + }, + { + "__type__": "cc.Node", + "_name": "CoinText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 151 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 153 + }, + { + "__id__": 154 + } + ], + "_prefab": null, + "_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": "f2CsAj+qxM0LFA9aK1vgOo" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 152 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 80.0771484375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "0ebJo6f/NIFJfok9uD3L7D" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 152 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_string": "9,999,999", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 18, + "_fontSize": 18, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "b3MgmUAdZD4YzRfSkFEbqG" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 151 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 30 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "afMz8DD4JFyru4n99IvhoR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 151 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 200, + "b": 0, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "b4QwhCJExDx6nfeq16On82" + }, + { + "__type__": "cc.Node", + "_name": "GemDisplay", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 150 + }, + "_children": [ + { + "__id__": 158 + } + ], + "_active": true, + "_components": [ + { + "__id__": 161 + }, + { + "__id__": 162 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 140, + "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": "aaKk6+EjJAF7IS5cF7hSPP" + }, + { + "__type__": "cc.Node", + "_name": "GemText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 157 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 159 + }, + { + "__id__": 160 + } + ], + "_prefab": null, + "_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": "20CchRUqVHaYiD0h4xEjUG" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 158 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 55.0546875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "42Xjo/b8RH/p3b8uJQNZ2y" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 158 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "99,999", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 18, + "_fontSize": 18, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "7aRNNBOmBNOrCaQdNSiw5N" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 30 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "582YRPMVtNBb5rMGVcJ2VO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 200, + "g": 0, + "b": 200, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "d0+2u+g/RM5ab3Apj63t9F" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 150 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "c35h3IbeNGFJXsGiILbFFV" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 142 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "0aP0CgVfpLFZT019rPJta+" + }, + { + "__type__": "cc.Node", + "_name": "TabBar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 141 + }, + "_children": [ + { + "__id__": 166 + }, + { + "__id__": 173 + }, + { + "__id__": 180 + }, + { + "__id__": 187 + } + ], + "_active": true, + "_components": [ + { + "__id__": 194 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 220, + "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": "d3d/ZfiBJLIZ0kivtNMstw" + }, + { + "__type__": "cc.Node", + "_name": "DailyTab", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 165 + }, + "_children": [ + { + "__id__": 167 + } + ], + "_active": true, + "_components": [ + { + "__id__": 170 + }, + { + "__id__": 171 + }, + { + "__id__": 172 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -300, + "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": "9cLPJaugVJLpSrvmmbeq+B" + }, + { + "__type__": "cc.Node", + "_name": "DailyLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 166 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 168 + }, + { + "__id__": 169 + } + ], + "_prefab": null, + "_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": "cd0iim6ZpOSZz7MSnPYlXA" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 167 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 45.0546875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "4apLiIs/hHAZehkpEUQNMo" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 167 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "DAILY", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 16, + "_fontSize": 16, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "9bClCtbH5J0boxjtFSAxZM" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 166 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "6aeg2D4eFMeZK08xIUw+7l" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 166 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 100, + "g": 150, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "1dyonKRPdPnaG1M/xsGnB1" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 166 + }, + "_enabled": true, + "__prefab": null, + "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": "30+SgBHiFD2714aitG/GVT" + }, + { + "__type__": "cc.Node", + "_name": "ChestTab", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 165 + }, + "_children": [ + { + "__id__": 174 + } + ], + "_active": true, + "_components": [ + { + "__id__": 177 + }, + { + "__id__": 178 + }, + { + "__id__": 179 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -100, + "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": "21Chuyhq9BFLfNXJuoITWs" + }, + { + "__type__": "cc.Node", + "_name": "ChestLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 173 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 175 + }, + { + "__id__": 176 + } + ], + "_prefab": null, + "_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": "degLMBXQpMLaBpwg1GjNV7" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 174 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 54.2265625, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "9fjmoJNcdDKaTB20dbjtmf" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 174 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "CHEST", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 16, + "_fontSize": 16, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "695IH0cXVBTJfKdu462Zk6" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 173 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "bd4aMVh7RHDa7lqPncZqZ3" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 173 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 80, + "g": 80, + "b": 80, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "55RF3b6BVJTJdD4VxsRtkx" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 173 + }, + "_enabled": true, + "__prefab": null, + "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": "62gQe++QpL7rBLoCSHed0U" + }, + { + "__type__": "cc.Node", + "_name": "GoldPackTab", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 165 + }, + "_children": [ + { + "__id__": 181 + } + ], + "_active": true, + "_components": [ + { + "__id__": 184 + }, + { + "__id__": 185 + }, + { + "__id__": 186 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 100, + "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": "33jnYggLZI9pjWnV2Ibbl9" + }, + { + "__type__": "cc.Node", + "_name": "GoldPackLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 180 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 182 + }, + { + "__id__": 183 + } + ], + "_prefab": null, + "_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": "dbxL9la9dAQosHh8rNYT5x" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 181 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 80.650390625, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "58YEvidVJLHqEBPUPETaZR" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 181 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "GOLD PACK", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 14, + "_fontSize": 14, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "5dL6u0FnZOmbJ8B4tHuhGp" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 180 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "324J73kV5APY3zB9KSaK9v" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 180 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 80, + "g": 80, + "b": 80, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "b6FOD/6X9J879gbL5MKYMc" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 180 + }, + "_enabled": true, + "__prefab": null, + "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": "bdhG/gllZNUq7xbT7PSlqp" + }, + { + "__type__": "cc.Node", + "_name": "GemPackTab", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 165 + }, + "_children": [ + { + "__id__": 188 + } + ], + "_active": true, + "_components": [ + { + "__id__": 191 + }, + { + "__id__": 192 + }, + { + "__id__": 193 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 300, + "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": "12E9i1S/RLpLknvjHG/QZW" + }, + { + "__type__": "cc.Node", + "_name": "GemPackLabel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 187 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 189 + }, + { + "__id__": 190 + } + ], + "_prefab": null, + "_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": "18yLluxJZC9oIUhZIQD5dX" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 188 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 72.8642578125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "67uDz207dPe5BqBs0buVzs" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 188 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "GEM PACK", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 14, + "_fontSize": 14, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "6dHGf9d6BIb7qJXO9QFMBm" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 187 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "84eZ4GX2FP2JnkyJDrN5b8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 187 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 80, + "g": 80, + "b": 80, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "907fzByAVI640sijtnIhSq" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 187 + }, + "_enabled": true, + "__prefab": null, + "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": "4aSakHBy9Ihb+COyNy6Hxm" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 165 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "0fiZrYA7JIBbOowNXA5yHr" + }, + { + "__type__": "cc.Node", + "_name": "ContentArea", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 141 + }, + "_children": [ + { + "__id__": 196 + }, + { + "__id__": 208 + }, + { + "__id__": 220 + }, + { + "__id__": 232 + } + ], + "_active": true, + "_components": [ + { + "__id__": 235 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 50, + "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": "b9Tx3JidRKkrqLhY1lJV7H" + }, + { + "__type__": "cc.Node", + "_name": "GemSubscriptionCard", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 195 + }, + "_children": [ + { + "__id__": 197 + }, + { + "__id__": 200 + }, + { + "__id__": 203 + } + ], + "_active": true, + "_components": [ + { + "__id__": 206 + }, + { + "__id__": 207 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -300, + "y": 100, + "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": "6amTKuYztP7LM3Q6VgVavs" + }, + { + "__type__": "cc.Node", + "_name": "GemSubTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 196 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 198 + }, + { + "__id__": 199 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 120, + "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": "94O6FPMhhJQZ5m6D9OpT4V" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 197 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 120.015625, + "height": 90.39999999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "50H/xZa/JOdYSIN6hLZ1CD" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 197 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "15 DAY GEM\nSUBSCRIPTION", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 16, + "_fontSize": 16, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "95g1Rj6MxLf6FxA6nbMoZN" + }, + { + "__type__": "cc.Node", + "_name": "GemAmount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 196 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 201 + }, + { + "__id__": 202 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 20, + "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": "31+oIEc+5AVI5jI2UfxGkl" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 53.33984375, + "height": 90.39999999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "e0QZ1THcZF2qNzr5ZKurzJ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Gems\n+450", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 20, + "_fontSize": 20, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "308trSAq5EL5CxtF6QpArZ" + }, + { + "__type__": "cc.Node", + "_name": "GemPrice", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 196 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 204 + }, + { + "__id__": 205 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -120, + "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": "34MH71KEFH3aGAEyLzzXVc" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 203 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 80.05078125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "01yMK+YQFC9bv2IzM+6frz" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 203 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "US $ 4.99", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 18, + "_fontSize": 18, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "509szxrf5KobRTRB+fU5vd" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 196 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "f4vABwkvJG/q9R+XmZS/6/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 196 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 150, + "g": 50, + "b": 200, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "2c1HsL13FKarVg958puZAn" + }, + { + "__type__": "cc.Node", + "_name": "SpecialCard", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 195 + }, + "_children": [ + { + "__id__": 209 + }, + { + "__id__": 212 + }, + { + "__id__": 215 + } + ], + "_active": true, + "_components": [ + { + "__id__": 218 + }, + { + "__id__": 219 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": -50, + "y": 100, + "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": "37ZAuToVlN4rJ6rjv4aBR4" + }, + { + "__type__": "cc.Node", + "_name": "SpecialTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 208 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 210 + }, + { + "__id__": 211 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 70, + "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": "5doWXuXoJAjLSxu77yKQos" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 209 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 67.5859375, + "height": 90.39999999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "76zdDi/TFGAL0H+4C1YBk2" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 209 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "SPECIAL\nOFFER", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 16, + "_fontSize": 16, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "d7SsQcvLNJGIi86d5gDyyD" + }, + { + "__type__": "cc.Node", + "_name": "SpecialContent", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 208 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 213 + }, + { + "__id__": 214 + } + ], + "_prefab": null, + "_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": "b5K43gffJDfb/cqowQLVRU" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 212 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 47.1064453125, + "height": 210.39999999999998 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "2aCyO/D6tMW7OHi5ex2hRK" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 212 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Gems\n+1000\n\nGold\n+50000", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 14, + "_fontSize": 14, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "36ds+9ovhIzaNjm/8/mdcl" + }, + { + "__type__": "cc.Node", + "_name": "SpecialPrice", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 208 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 216 + }, + { + "__id__": 217 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -70, + "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": "ea1646PaxBs50RrhVn6ueH" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 215 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 80.05078125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "757SawislH8InkQ9JPkHxn" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 215 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "US $ 9.99", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 18, + "_fontSize": 18, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "76JSIgo1xNO7o3KFjpZZz1" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 208 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "2bv6jX5UtK/YEed0nPlxls" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 208 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 50, + "g": 150, + "b": 100, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "8br9zjdP5H85SGhmdwUvHy" + }, + { + "__type__": "cc.Node", + "_name": "TreasureChestCard", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 195 + }, + "_children": [ + { + "__id__": 221 + }, + { + "__id__": 224 + }, + { + "__id__": 227 + } + ], + "_active": true, + "_components": [ + { + "__id__": 230 + }, + { + "__id__": 231 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 200, + "y": 100, + "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": "2djnf2uERE+ZfOdeTh0bGF" + }, + { + "__type__": "cc.Node", + "_name": "ChestTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 220 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 222 + }, + { + "__id__": 223 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 70, + "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": "8eJNKZRK5NC4I9V2QgXpej" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 221 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 87.125, + "height": 90.39999999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "2dKoGu5f5JXKCPcE2o2Sy7" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 221 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "TREASURE\nCHEST", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 16, + "_fontSize": 16, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "51ZCsCEJxCILK+s1xdxc6a" + }, + { + "__type__": "cc.Node", + "_name": "ChestContent", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 220 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 225 + }, + { + "__id__": 226 + } + ], + "_prefab": null, + "_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": "52esfHSSBPTItdfANwoc8I" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 224 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 55.2412109375, + "height": 250.39999999999998 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "956fhPprREg5+QCm6aD/XN" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 224 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Random\nRewards\n\nGems\nGold\nItems", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 14, + "_fontSize": 14, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "cfnYbCy6xKpqx4hyZUPBaV" + }, + { + "__type__": "cc.Node", + "_name": "ChestPrice", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 220 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 228 + }, + { + "__id__": 229 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -70, + "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": "0710El4FRJG4BBxbrtzE6N" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 227 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 80.05078125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "12t5JDOkVLM77OSoStfaPQ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 227 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "US $ 2.99", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 18, + "_fontSize": 18, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "79eN+TVghN6L2fp1Lo9YA5" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 220 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "3d3c1ZnUdFkppWdYGBBJF0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 220 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 200, + "g": 150, + "b": 50, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "a4s0Kb2TBM2puTE0EKjokx" + }, + { + "__type__": "cc.Node", + "_name": "GoldPackCard", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 195 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 233 + }, + { + "__id__": 234 + } + ], + "_prefab": null, + "_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": "d1wzVtv6FJKJW60U64jvcf" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 232 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "25+5/xrWBMmJvc91CJliYG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 232 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "c66YjYm7BGbKjaaDW5oTcU" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 195 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 900, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "06u+1dgeJNv6yDz2EH31cg" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 141 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 2, + "height": 2 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "aa4uoMlQ5Aj4DHkqWlozgX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 141 + }, + "_enabled": true, + "__prefab": null, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 25, + "g": 60, + "b": 120, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "3fPZskMZ9MaYrjZjV0HrG+" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 141 + }, + "_enabled": true, + "__prefab": null, + "_alignFlags": 45, + "_target": null, + "_left": 1279, + "_right": 1279, + "_top": 719, + "_bottom": 719, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1024, + "_originalHeight": 768, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "cdLA5BxDdC2KqDAjAaPUVu" + }, + { + "__type__": "cc.Node", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_prefab": { + "__id__": 240 + }, + "__editorExtras__": {} + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 239 + }, + "asset": { + "__uuid__": "1369e7f1-056a-4e3d-8484-39be5dface1e", + "__expectedType__": "cc.Prefab" + }, + "fileId": "c46/YsCPVOJYA4mWEpNYRx", + "instance": { + "__id__": 241 + }, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.PrefabInstance", + "fileId": "703Rv/J55B1qvw4G/ZUoVF", + "prefabRootNode": null, + "mountedChildren": [], + "mountedComponents": [ + { + "__id__": 242 + } + ], + "propertyOverrides": [ + { + "__id__": 246 + }, + { + "__id__": 248 + }, + { + "__id__": 249 + }, + { + "__id__": 250 + }, + { + "__id__": 251 + } + ], + "removedComponents": [] + }, + { + "__type__": "cc.MountedComponentsInfo", + "targetInfo": { + "__id__": 243 + }, + "components": [ + { + "__id__": 244 + }, + { + "__id__": 245 + } + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "c46/YsCPVOJYA4mWEpNYRx" + ] + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": { + "mountedRoot": { + "__id__": 239 + } + }, + "node": { + "__id__": 239 + }, + "_enabled": true, + "__prefab": null, + "_contentSize": { + "__type__": "cc.Size", + "width": 640, + "height": 1138 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "c8/wjqXIZP7JYpAckdKUHE" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": { + "mountedRoot": { + "__id__": 239 + } + }, + "node": { + "__id__": 239 + }, + "_enabled": true, + "__prefab": null, + "_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": "869+0DLqpNrKqpf9db0NJx" + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 247 + }, + "propertyPath": [ + "_name" + ], + "value": "GameUI" + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "c46/YsCPVOJYA4mWEpNYRx" + ] + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 247 + }, + "propertyPath": [ + "_lpos" + ], + "value": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 247 + }, + "propertyPath": [ + "_lrot" + ], + "value": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + } + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 247 + }, + "propertyPath": [ + "_euler" + ], + "value": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "__type__": "CCPropertyOverrideInfo", + "targetInfo": { + "__id__": 247 + }, + "propertyPath": [ + "_layer" + ], + "value": 33554432 + }, { "__type__": "cc.UITransform", "_name": "", @@ -5397,8 +9753,8 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 2560, - "height": 1440 + "width": 640, + "height": 1138 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5477,7 +9833,7 @@ "_active": true, "_components": [ { - "__id__": 144 + "__id__": 257 } ], "_prefab": null, @@ -5516,12 +9872,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 256 }, "_enabled": true, "__prefab": null, "loading": { - "__id__": 40 + "__id__": 42 }, "_id": "a8QDMGHOpMgYM7mqOtq64J" }, @@ -5535,34 +9891,37 @@ "nestedPrefabInstanceRoots": [ { "__id__": 10 + }, + { + "__id__": 239 } ] }, { "__type__": "cc.SceneGlobals", "ambient": { - "__id__": 147 + "__id__": 260 }, "shadows": { - "__id__": 148 + "__id__": 261 }, "_skybox": { - "__id__": 149 + "__id__": 262 }, "fog": { - "__id__": 150 + "__id__": 263 }, "octree": { - "__id__": 151 + "__id__": 264 }, "skin": { - "__id__": 152 + "__id__": 265 }, "lightProbeInfo": { - "__id__": 153 + "__id__": 266 }, "postSettings": { - "__id__": 154 + "__id__": 267 }, "bakedWithStationaryMainLight": false, "bakedWithHighpLightmap": false diff --git a/assets/scripts/DontDestroy.ts b/assets/scripts/DontDestroy.ts index fe2f3bd..6dabb40 100644 --- a/assets/scripts/DontDestroy.ts +++ b/assets/scripts/DontDestroy.ts @@ -1,4 +1,3 @@ -/* eslint-disable no-console */ import { _decorator, Component, director } from "cc"; const { ccclass, property } = _decorator; @@ -30,9 +29,7 @@ export class DontDestroy extends Component { */ private makePersistent(): void { if (this._isPersistent) { - console.warn( - `DontDestroy: 节点 ${this.node.name} 已经是常驻节点,无需重复设置`, - ); + console.warn(`DontDestroy: 节点 ${this.node.name} 已经是常驻节点,无需重复设置`); return; } @@ -49,9 +46,7 @@ export class DontDestroy extends Component { */ public removePersistent(): void { if (!this._isPersistent) { - console.warn( - `DontDestroy: 节点 ${this.node.name} 不是常驻节点,无需移除`, - ); + console.warn(`DontDestroy: 节点 ${this.node.name} 不是常驻节点,无需移除`); return; } @@ -59,9 +54,7 @@ export class DontDestroy extends Component { director.removePersistRootNode(this.node); this._isPersistent = false; - console.log( - `DontDestroy: 节点 ${this.node.name} 已从常驻节点列表中移除`, - ); + console.log(`DontDestroy: 节点 ${this.node.name} 已从常驻节点列表中移除`); } /** diff --git a/assets/scripts/Startup.ts b/assets/scripts/Startup.ts index abe0b10..7e69a46 100644 --- a/assets/scripts/Startup.ts +++ b/assets/scripts/Startup.ts @@ -1,4 +1,3 @@ -/* eslint-disable no-console */ import { _decorator, assetManager, AssetManager, Component, director } from "cc"; import HotupdateConfig from "@max-studio/hotupdate/HotupdateConfig"; @@ -15,6 +14,7 @@ const { ccclass, property } = _decorator; export class Startup extends Component { @property(HotupdateLoading) private loading!: HotupdateLoading; + private loadingStartAt = 0; protected onLoad(): void { HotupdateInstance.getInstance().register(this.onHotupdateEvent.bind(this)); @@ -107,7 +107,8 @@ export class Startup extends Component { } async start() { - this.loading.updateProgressText("正在检查更新..."); + this.loadingStartAt = Date.now(); + this.loading.updateProgressText("正在检查更新", true); void HotupdateInstance.getInstance().checkUpdate(new HotupdateConfig("main")); } @@ -115,7 +116,7 @@ export class Startup extends Component { * 重新尝试热更新 */ private tryHotUpdate(): void { - this.loading.updateProgressText("正在检查更新..."); + this.loading.updateProgressText("正在检查更新", true); void HotupdateInstance.getInstance().checkUpdate(new HotupdateConfig("main")); } @@ -123,7 +124,7 @@ export class Startup extends Component { * 开始热更新 */ private startHotUpdate(): void { - this.loading.updateProgressText("正在更新..."); + this.loading.updateProgressText("正在更新", true); HotupdateInstance.getInstance().hotUpdate(); } @@ -131,7 +132,7 @@ export class Startup extends Component { * 重试更新 */ private retryUpdate(): void { - this.loading.updateProgressText("正在更新..."); + this.loading.updateProgressText("正在更新", true); HotupdateInstance.getInstance().hotUpdate(); } @@ -139,6 +140,7 @@ export class Startup extends Component { * 进入游戏 */ private async enterHall() { + this.loading.updateProgressText("热更新完成, 即将进入游戏"); try { await this.loadBundles("max-core", "max-res", "configs"); const hallBundle = await this.loadBundle("hall"); @@ -147,10 +149,13 @@ export class Startup extends Component { console.error("加载场景失败:", err); return; } - this.loading.node.destroy(); - console.log("加载场景成功", data); - // 切换到 Hall 场景 - director.runScene(data); + const elapsed = Date.now() - this.loadingStartAt; + const delay = Math.max(2000 - elapsed, 0); + setTimeout(() => { + this.loading.node.destroy(); + console.log("加载场景成功", data); + director.runScene(data); + }, delay); }); } catch (err) { console.log("err", err); diff --git a/assets/scripts/core/GlobalProtoInit.ts b/assets/scripts/core/GlobalProtoInit.ts index a6fa170..59db0f6 100644 --- a/assets/scripts/core/GlobalProtoInit.ts +++ b/assets/scripts/core/GlobalProtoInit.ts @@ -1,19 +1,14 @@ -/* eslint-disable no-console */ /** * 全局 Proto 初始化 */ -// import ProtoDefinitionsModule from "../protos/ProtoDefinitions.js"; - +import { EDITOR } from "cc/env"; import ProtoDefinitionsModule from "../protos/ProtoDefinitions.js"; -// @ts-ignore - /** * 初始化全局 ProtoDefinitions */ export class GlobalProtoInit { - // ProtoDefinitionsModule. private static _initialized = false; /** @@ -26,25 +21,15 @@ export class GlobalProtoInit { try { // 将 ProtoDefinitions 挂载到全局对象 - - (globalThis as any).ProtoDefinitions = ProtoDefinitionsModule; - // 同时挂载到 window 对象(浏览器环境) if (typeof window !== "undefined") { - (window as any).ProtoDefinitions = ProtoDefinitionsModule; + window.ProtoDefinitions = ProtoDefinitionsModule; } this._initialized = true; - console.log( - "GlobalProtoInit", - "ProtoDefinitions 已成功挂载到全局对象", - ); + console.log("GlobalProtoInit", "ProtoDefinitions 已成功挂载到全局对象"); } catch (err) { - console.error( - "GlobalProtoInit", - "初始化 ProtoDefinitions 失败:", - err, - ); + console.error("GlobalProtoInit", "初始化 ProtoDefinitions 失败:", err); } } @@ -55,3 +40,7 @@ export class GlobalProtoInit { return this._initialized; } } + +if (!EDITOR) { + GlobalProtoInit.init(); +} diff --git a/assets/scripts/protos/ProtoDefinitions.js b/assets/scripts/protos/ProtoDefinitions.js index 2615cf0..6ab932e 100644 --- a/assets/scripts/protos/ProtoDefinitions.js +++ b/assets/scripts/protos/ProtoDefinitions.js @@ -1,4 +1,4 @@ -/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/ + "use strict"; var $protobuf = require("protobufjs/minimal"); diff --git a/assets/static-res/Components/Button/Btn_OtherButton_Square08.png.meta b/assets/static-res/Components/Button/Btn_OtherButton_Square08.png.meta index e4c7f3a..4af0664 100644 --- a/assets/static-res/Components/Button/Btn_OtherButton_Square08.png.meta +++ b/assets/static-res/Components/Button/Btn_OtherButton_Square08.png.meta @@ -50,10 +50,10 @@ "height": 42, "rawWidth": 42, "rawHeight": 42, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderTop": 21, + "borderBottom": 21, + "borderLeft": 21, + "borderRight": 21, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/Components/Frame/Frame_BasicFrame_Square05.png.meta b/assets/static-res/Components/Frame/Frame_BasicFrame_Square05.png.meta index 2eaadcf..bb3b0d0 100644 --- a/assets/static-res/Components/Frame/Frame_BasicFrame_Square05.png.meta +++ b/assets/static-res/Components/Frame/Frame_BasicFrame_Square05.png.meta @@ -49,10 +49,10 @@ "height": 65, "rawWidth": 59, "rawHeight": 65, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderTop": 32, + "borderBottom": 33, + "borderLeft": 29, + "borderRight": 30, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/Components/Icon/Icon_ImageIcon_Chat.png.meta b/assets/static-res/Components/Icon/Icon_ImageIcon_Chat.png.meta index 18c5167..ed8b49b 100644 --- a/assets/static-res/Components/Icon/Icon_ImageIcon_Chat.png.meta +++ b/assets/static-res/Components/Icon/Icon_ImageIcon_Chat.png.meta @@ -52,8 +52,8 @@ "rawHeight": 86, "borderTop": 0, "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderLeft": 40, + "borderRight": 40, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/Components/Icon/Icon_MenuIcon04_Trophy.Png.meta b/assets/static-res/Components/Icon/Icon_MenuIcon04_Trophy.Png.meta index f666195..bf9069f 100644 --- a/assets/static-res/Components/Icon/Icon_MenuIcon04_Trophy.Png.meta +++ b/assets/static-res/Components/Icon/Icon_MenuIcon04_Trophy.Png.meta @@ -50,10 +50,10 @@ "height": 89, "rawWidth": 131, "rawHeight": 89, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderTop": 21, + "borderBottom": 21, + "borderLeft": 21, + "borderRight": 21, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/Components/Slider/Slider04_Fill_Orange.png.meta b/assets/static-res/Components/Slider/Slider04_Fill_Orange.png.meta index f2c8281..bdc4166 100644 --- a/assets/static-res/Components/Slider/Slider04_Fill_Orange.png.meta +++ b/assets/static-res/Components/Slider/Slider04_Fill_Orange.png.meta @@ -52,8 +52,8 @@ "rawHeight": 48, "borderTop": 0, "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderLeft": 1, + "borderRight": 12, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/Components/Slider/Slider05_Fill.png.meta b/assets/static-res/Components/Slider/Slider05_Fill.png.meta index b6ff51f..7c75504 100644 --- a/assets/static-res/Components/Slider/Slider05_Fill.png.meta +++ b/assets/static-res/Components/Slider/Slider05_Fill.png.meta @@ -50,10 +50,10 @@ "height": 53, "rawWidth": 29, "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, + "borderTop": 1, + "borderBottom": 1, "borderLeft": 14, - "borderRight": 15, + "borderRight": 14, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/Spine/DressGlare.meta b/assets/static-res/Spine/DressGlare.meta new file mode 100644 index 0000000..d309b73 --- /dev/null +++ b/assets/static-res/Spine/DressGlare.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "5e931398-8d76-4e49-970a-fc55ae99b357", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/qingshu.meta b/assets/static-res/Spine/DressGlare/qingshu.meta new file mode 100644 index 0000000..06d1f13 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/qingshu.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "919d9def-1224-4e38-886b-0cd8aac4c0a7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/qingshu/qingshu.atlas b/assets/static-res/Spine/DressGlare/qingshu/qingshu.atlas new file mode 100644 index 0000000..bf2dc95 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/qingshu/qingshu.atlas @@ -0,0 +1,55 @@ + +qingshu.png +size: 163,461 +format: RGBA8888 +filter: Linear,Linear +repeat: none +QS_xin + rotate: true + xy: 2, 265 + size: 194, 159 + orig: 194, 159 + offset: 0, 0 + index: -1 +QS_xin_1 + rotate: false + xy: 101, 153 + size: 58, 54 + orig: 58, 54 + offset: 0, 0 + index: -1 +QS_xin_2 + rotate: false + xy: 101, 209 + size: 60, 54 + orig: 60, 54 + offset: 0, 0 + index: -1 +QS_xin_3 + rotate: false + xy: 81, 2 + size: 58, 54 + orig: 58, 54 + offset: 0, 0 + index: -1 +QS_xin_4 + rotate: false + xy: 81, 58 + size: 77, 69 + orig: 77, 69 + offset: 0, 0 + index: -1 +QS_xin_5 + rotate: false + xy: 2, 57 + size: 77, 70 + orig: 77, 70 + offset: 0, 0 + index: -1 +QS_xin_cb_R + rotate: false + xy: 2, 129 + size: 97, 134 + orig: 97, 134 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/qingshu/qingshu.atlas.meta b/assets/static-res/Spine/DressGlare/qingshu/qingshu.atlas.meta new file mode 100644 index 0000000..9068fda --- /dev/null +++ b/assets/static-res/Spine/DressGlare/qingshu/qingshu.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "04903655-87e7-4d2e-bfd0-63bd041b2887", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/qingshu/qingshu.png b/assets/static-res/Spine/DressGlare/qingshu/qingshu.png new file mode 100644 index 0000000..bcf2d28 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/qingshu/qingshu.png differ diff --git a/assets/static-res/Spine/DressGlare/qingshu/qingshu.png.meta b/assets/static-res/Spine/DressGlare/qingshu/qingshu.png.meta new file mode 100644 index 0000000..52f7721 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/qingshu/qingshu.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "24de3fca-da74-4396-8072-db36d7a9ff76", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24de3fca-da74-4396-8072-db36d7a9ff76@6c48a", + "displayName": "qingshu", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24de3fca-da74-4396-8072-db36d7a9ff76", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "24de3fca-da74-4396-8072-db36d7a9ff76@f9941", + "displayName": "qingshu", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 157, + "height": 455, + "rawWidth": 163, + "rawHeight": 461, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -78.5, + -227.5, + 0, + 78.5, + -227.5, + 0, + -78.5, + 227.5, + 0, + 78.5, + 227.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 458, + 160, + 458, + 3, + 3, + 160, + 3 + ], + "nuv": [ + 0.018404907975460124, + 0.006507592190889371, + 0.9815950920245399, + 0.006507592190889371, + 0.018404907975460124, + 0.9934924078091106, + 0.9815950920245399, + 0.9934924078091106 + ], + "minPos": [ + -78.5, + -227.5, + 0 + ], + "maxPos": [ + 78.5, + 227.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24de3fca-da74-4396-8072-db36d7a9ff76@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24de3fca-da74-4396-8072-db36d7a9ff76@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/qingshu/qingshu.skel b/assets/static-res/Spine/DressGlare/qingshu/qingshu.skel new file mode 100644 index 0000000..1e5d132 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/qingshu/qingshu.skel differ diff --git a/assets/static-res/Spine/DressGlare/qingshu/qingshu.skel.meta b/assets/static-res/Spine/DressGlare/qingshu/qingshu.skel.meta new file mode 100644 index 0000000..4ccd820 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/qingshu/qingshu.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "85836faf-542d-406a-bd77-5324821f4e4b", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "04903655-87e7-4d2e-bfd0-63bd041b2887" + } +} diff --git a/assets/static-res/Spine/DressGlare/tanghulu.meta b/assets/static-res/Spine/DressGlare/tanghulu.meta new file mode 100644 index 0000000..ccb01ca --- /dev/null +++ b/assets/static-res/Spine/DressGlare/tanghulu.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "aa22bb0e-b8db-46dd-b993-bc5b4945dd26", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.atlas b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.atlas new file mode 100644 index 0000000..e20fcb6 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.atlas @@ -0,0 +1,69 @@ + +tanghulu.png +size: 479,272 +format: RGBA8888 +filter: Linear,Linear +repeat: none +THL + rotate: false + xy: 2, 2 + size: 125, 268 + orig: 125, 268 + offset: 0, 0 + index: -1 +THL_glow + rotate: true + xy: 129, 100 + size: 170, 312 + orig: 170, 312 + offset: 0, 0 + index: -1 +THL_hua_01 + rotate: false + xy: 386, 26 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +THL_hua_02 + rotate: false + xy: 129, 4 + size: 83, 94 + orig: 83, 94 + offset: 0, 0 + index: -1 +THL_hua_03 + rotate: true + xy: 214, 6 + size: 92, 90 + orig: 92, 90 + offset: 0, 0 + index: -1 +THL_hua_04 + rotate: false + xy: 306, 19 + size: 78, 79 + orig: 78, 79 + offset: 0, 0 + index: -1 +THL_star_1 + rotate: false + xy: 443, 226 + size: 34, 44 + orig: 34, 44 + offset: 0, 0 + index: -1 +THL_star_2 + rotate: true + xy: 443, 199 + size: 25, 32 + orig: 25, 32 + offset: 0, 0 + index: -1 +THL_star_3 + rotate: true + xy: 443, 172 + size: 25, 31 + orig: 25, 31 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.atlas.meta b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.atlas.meta new file mode 100644 index 0000000..ba911c8 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "c5ce88bb-621e-4f1b-98c8-bff3a77fc93f", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.png b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.png new file mode 100644 index 0000000..b4fe250 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.png differ diff --git a/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.png.meta b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.png.meta new file mode 100644 index 0000000..13a05c2 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6b46de1f-3b4a-447e-983f-b1999616e7d6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6b46de1f-3b4a-447e-983f-b1999616e7d6@6c48a", + "displayName": "tanghulu", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6b46de1f-3b4a-447e-983f-b1999616e7d6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6b46de1f-3b4a-447e-983f-b1999616e7d6@f9941", + "displayName": "tanghulu", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 473, + "height": 266, + "rawWidth": 479, + "rawHeight": 272, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -236.5, + -133, + 0, + 236.5, + -133, + 0, + -236.5, + 133, + 0, + 236.5, + 133, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 269, + 476, + 269, + 3, + 3, + 476, + 3 + ], + "nuv": [ + 0.006263048016701462, + 0.011029411764705883, + 0.9937369519832986, + 0.011029411764705883, + 0.006263048016701462, + 0.9889705882352942, + 0.9937369519832986, + 0.9889705882352942 + ], + "minPos": [ + -236.5, + -133, + 0 + ], + "maxPos": [ + 236.5, + 133, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6b46de1f-3b4a-447e-983f-b1999616e7d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6b46de1f-3b4a-447e-983f-b1999616e7d6@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.skel b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.skel new file mode 100644 index 0000000..41727bf Binary files /dev/null and b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.skel differ diff --git a/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.skel.meta b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.skel.meta new file mode 100644 index 0000000..7cb2653 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/tanghulu/tanghulu.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "6731183c-837f-46f4-9abd-c582f638dd8a", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "c5ce88bb-621e-4f1b-98c8-bff3a77fc93f" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20525.meta b/assets/static-res/Spine/DressGlare/wing_20525.meta new file mode 100644 index 0000000..1f646c5 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20525.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "dda8ce90-e880-4ea2-aafe-abbcd3c084ec", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.atlas b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.atlas new file mode 100644 index 0000000..08ada98 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.atlas @@ -0,0 +1,90 @@ + +wing_20525.png +size: 334,541 +format: RGBA8888 +filter: Linear,Linear +repeat: none +qs_biuling + rotate: true + xy: 2, 111 + size: 55, 59 + orig: 55, 59 + offset: 0, 0 + index: -1 +qs_heye + rotate: false + xy: 2, 309 + size: 212, 96 + orig: 212, 96 + offset: 0, 0 + index: -1 +qs_heye1 + rotate: true + xy: 2, 2 + size: 104, 129 + orig: 104, 129 + offset: 0, 0 + index: -1 +qs_heye1_glow + rotate: true + xy: 2, 168 + size: 139, 161 + orig: 139, 161 + offset: 0, 0 + index: -1 +qs_heye2 + rotate: false + xy: 234, 41 + size: 71, 65 + orig: 71, 65 + offset: 0, 0 + index: -1 +qs_heye2_glow + rotate: true + xy: 133, 2 + size: 104, 99 + orig: 104, 99 + offset: 0, 0 + index: -1 +qs_heye3 + rotate: false + xy: 212, 199 + size: 106, 54 + orig: 106, 54 + offset: 0, 0 + index: -1 +qs_heye3_glow + rotate: false + xy: 165, 108 + size: 139, 89 + orig: 139, 89 + offset: 0, 0 + index: -1 +qs_heye_glow + rotate: false + xy: 2, 407 + size: 246, 132 + orig: 246, 132 + offset: 0, 0 + index: -1 +qs_heye_pd + rotate: false + xy: 165, 202 + size: 45, 105 + orig: 45, 105 + offset: 0, 0 + index: -1 +qs_heye_pd_glow + rotate: false + xy: 250, 400 + size: 76, 139 + orig: 76, 139 + offset: 0, 0 + index: -1 +qs_lianhua + rotate: true + xy: 216, 255 + size: 143, 116 + orig: 143, 116 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.atlas.meta new file mode 100644 index 0000000..97dc05b --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "b3e5172c-9b4f-4257-9955-27fb2d60af13", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.png b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.png new file mode 100644 index 0000000..15569e1 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.png.meta b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.png.meta new file mode 100644 index 0000000..7bd73fb --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1b9832ba-8749-4773-a25e-2cefc3cbfedc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1b9832ba-8749-4773-a25e-2cefc3cbfedc@6c48a", + "displayName": "wing_20525", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1b9832ba-8749-4773-a25e-2cefc3cbfedc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1b9832ba-8749-4773-a25e-2cefc3cbfedc@f9941", + "displayName": "wing_20525", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 328, + "height": 535, + "rawWidth": 334, + "rawHeight": 541, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -164, + -267.5, + 0, + 164, + -267.5, + 0, + -164, + 267.5, + 0, + 164, + 267.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 538, + 331, + 538, + 3, + 3, + 331, + 3 + ], + "nuv": [ + 0.008982035928143712, + 0.005545286506469501, + 0.9910179640718563, + 0.005545286506469501, + 0.008982035928143712, + 0.9944547134935305, + 0.9910179640718563, + 0.9944547134935305 + ], + "minPos": [ + -164, + -267.5, + 0 + ], + "maxPos": [ + 164, + 267.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1b9832ba-8749-4773-a25e-2cefc3cbfedc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1b9832ba-8749-4773-a25e-2cefc3cbfedc@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.skel b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.skel new file mode 100644 index 0000000..6981cf3 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.skel.meta b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.skel.meta new file mode 100644 index 0000000..237b4e4 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20525/wing_20525.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "e9b4e6b7-6234-4639-a751-1c133d276758", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "b3e5172c-9b4f-4257-9955-27fb2d60af13" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20530.meta b/assets/static-res/Spine/DressGlare/wing_20530.meta new file mode 100644 index 0000000..c24826b --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20530.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b5159467-41c0-4a6c-8a72-2b9f5205ccbe", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.atlas b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.atlas new file mode 100644 index 0000000..6417794 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.atlas @@ -0,0 +1,90 @@ + +wing_20530.png +size: 1015,332 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bs_biuling + rotate: true + xy: 656, 7 + size: 122, 130 + orig: 122, 130 + offset: 0, 0 + index: -1 +bs_huaban_01 + rotate: true + xy: 799, 277 + size: 53, 54 + orig: 53, 54 + offset: 0, 0 + index: -1 +bs_huaban_02 + rotate: false + xy: 856, 70 + size: 72, 66 + orig: 72, 66 + offset: 0, 0 + index: -1 +bs_huaban_03 + rotate: true + xy: 852, 138 + size: 81, 77 + orig: 81, 77 + offset: 0, 0 + index: -1 +bs_san + rotate: true + xy: 358, 8 + size: 322, 296 + orig: 322, 296 + offset: 0, 0 + index: -1 +bs_san_glow + rotate: false + xy: 2, 2 + size: 354, 328 + orig: 354, 328 + offset: 0, 0 + index: -1 +bs_san_piaodai_01 + rotate: true + xy: 856, 11 + size: 34, 80 + orig: 34, 80 + offset: 0, 0 + index: -1 +bs_san_piaodai_01_glow + rotate: false + xy: 788, 17 + size: 66, 112 + orig: 66, 112 + offset: 0, 0 + index: -1 +bs_san_piaodai_02 + rotate: false + xy: 856, 221 + size: 152, 109 + orig: 152, 109 + offset: 0, 0 + index: -1 +bs_san_piaodai_02_glow + rotate: true + xy: 656, 131 + size: 199, 141 + orig: 199, 141 + offset: 0, 0 + index: -1 +bs_san_piaodai_03 + rotate: false + xy: 799, 134 + size: 51, 141 + orig: 51, 141 + offset: 0, 0 + index: -1 +bs_san_piaodai_03_glow + rotate: false + xy: 931, 47 + size: 82, 172 + orig: 82, 172 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.atlas.meta new file mode 100644 index 0000000..694d0e0 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "a0ab791b-d357-4cb9-91b0-ac14516b096e", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.png b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.png new file mode 100644 index 0000000..8ec60cf Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.png.meta b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.png.meta new file mode 100644 index 0000000..69e078a --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9622fa29-22ef-4472-a4c2-9383f547e374", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9622fa29-22ef-4472-a4c2-9383f547e374@6c48a", + "displayName": "wing_20530", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9622fa29-22ef-4472-a4c2-9383f547e374", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9622fa29-22ef-4472-a4c2-9383f547e374@f9941", + "displayName": "wing_20530", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 1009, + "height": 326, + "rawWidth": 1015, + "rawHeight": 332, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -504.5, + -163, + 0, + 504.5, + -163, + 0, + -504.5, + 163, + 0, + 504.5, + 163, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 329, + 1012, + 329, + 3, + 3, + 1012, + 3 + ], + "nuv": [ + 0.002955665024630542, + 0.009036144578313253, + 0.9970443349753695, + 0.009036144578313253, + 0.002955665024630542, + 0.9909638554216867, + 0.9970443349753695, + 0.9909638554216867 + ], + "minPos": [ + -504.5, + -163, + 0 + ], + "maxPos": [ + 504.5, + 163, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9622fa29-22ef-4472-a4c2-9383f547e374@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9622fa29-22ef-4472-a4c2-9383f547e374@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.skel b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.skel new file mode 100644 index 0000000..2b7a575 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.skel.meta b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.skel.meta new file mode 100644 index 0000000..98830ff --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20530/wing_20530.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "55858a9c-4b83-44d5-ad03-6bfd9535c0aa", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "a0ab791b-d357-4cb9-91b0-ac14516b096e" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20535.meta b/assets/static-res/Spine/DressGlare/wing_20535.meta new file mode 100644 index 0000000..649d184 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20535.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a476994b-6af5-4536-a1fc-9dcc5f804ccf", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.atlas b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.atlas new file mode 100644 index 0000000..f12ee0a --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.atlas @@ -0,0 +1,55 @@ + +wing_20535.png +size: 1010,234 +format: RGBA8888 +filter: Linear,Linear +repeat: none +mfsn_buling + rotate: true + xy: 948, 168 + size: 64, 60 + orig: 64, 60 + offset: 0, 0 + index: -1 +mfsn_mfb + rotate: true + xy: 684, 36 + size: 196, 262 + orig: 196, 262 + offset: 0, 0 + index: -1 +mfsn_mfb_glow + rotate: true + xy: 390, 5 + size: 227, 292 + orig: 227, 292 + offset: 0, 0 + index: -1 +mfsn_mfb_tuowei + rotate: false + xy: 2, 2 + size: 386, 230 + orig: 386, 230 + offset: 0, 0 + index: -1 +mfsn_xin1 + rotate: false + xy: 948, 23 + size: 43, 41 + orig: 43, 41 + offset: 0, 0 + index: -1 +mfsn_xin2 + rotate: false + xy: 948, 66 + size: 43, 42 + orig: 43, 42 + offset: 0, 0 + index: -1 +mfsn_xin3 + rotate: false + xy: 948, 110 + size: 58, 56 + orig: 58, 56 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.atlas.meta new file mode 100644 index 0000000..7d76bbc --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "a59347ff-08a7-4f9a-87b5-90b4a8151403", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.png b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.png new file mode 100644 index 0000000..443ad2b Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.png.meta b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.png.meta new file mode 100644 index 0000000..e2e53cf --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "644ff823-df8d-4a77-a6d9-cdf8d5e9dd19", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "644ff823-df8d-4a77-a6d9-cdf8d5e9dd19@6c48a", + "displayName": "wing_20535", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "644ff823-df8d-4a77-a6d9-cdf8d5e9dd19", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "644ff823-df8d-4a77-a6d9-cdf8d5e9dd19@f9941", + "displayName": "wing_20535", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": -0.5, + "trimX": 3, + "trimY": 3, + "width": 1005, + "height": 229, + "rawWidth": 1010, + "rawHeight": 234, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -502.5, + -114.5, + 0, + 502.5, + -114.5, + 0, + -502.5, + 114.5, + 0, + 502.5, + 114.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 231, + 1008, + 231, + 3, + 2, + 1008, + 2 + ], + "nuv": [ + 0.0029702970297029703, + 0.008547008547008548, + 0.998019801980198, + 0.008547008547008548, + 0.0029702970297029703, + 0.9871794871794872, + 0.998019801980198, + 0.9871794871794872 + ], + "minPos": [ + -502.5, + -114.5, + 0 + ], + "maxPos": [ + 502.5, + 114.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "644ff823-df8d-4a77-a6d9-cdf8d5e9dd19@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "644ff823-df8d-4a77-a6d9-cdf8d5e9dd19@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.skel b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.skel new file mode 100644 index 0000000..e346168 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.skel.meta b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.skel.meta new file mode 100644 index 0000000..6b0fac7 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20535/wing_20535.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "e0ed15c4-6a0c-4fee-8cce-5ed5c30558cf", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "a59347ff-08a7-4f9a-87b5-90b4a8151403" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20540.meta b/assets/static-res/Spine/DressGlare/wing_20540.meta new file mode 100644 index 0000000..2efee6c --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20540.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "0c49facb-1831-4cf9-8fa6-3722ad38d190", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.atlas b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.atlas new file mode 100644 index 0000000..d42fcf5 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.atlas @@ -0,0 +1,34 @@ + +wing_20540.png +size: 129,150 +format: RGBA8888 +filter: Linear,Linear +repeat: none +wing_20540 + rotate: true + xy: 2, 41 + size: 107, 125 + orig: 107, 125 + offset: 0, 0 + index: -1 +wing_20540_l + rotate: true + xy: 2, 2 + size: 37, 44 + orig: 37, 44 + offset: 0, 0 + index: -1 +wing_20540_r + rotate: true + xy: 48, 3 + size: 36, 41 + orig: 36, 41 + offset: 0, 0 + index: -1 +wing_20540_t + rotate: true + xy: 91, 2 + size: 37, 26 + orig: 37, 26 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.atlas.meta new file mode 100644 index 0000000..277900b --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "a45b8e14-e3f9-4fb3-a82a-001ff1cee5bd", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.png b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.png new file mode 100644 index 0000000..35c5ce9 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.png.meta b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.png.meta new file mode 100644 index 0000000..d832d76 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0cef5b5-3974-4868-a818-a76acfee9504", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0cef5b5-3974-4868-a818-a76acfee9504@6c48a", + "displayName": "wing_20540", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0cef5b5-3974-4868-a818-a76acfee9504", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a0cef5b5-3974-4868-a818-a76acfee9504@f9941", + "displayName": "wing_20540", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 123, + "height": 144, + "rawWidth": 129, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -61.5, + -72, + 0, + 61.5, + -72, + 0, + -61.5, + 72, + 0, + 61.5, + 72, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 147, + 126, + 147, + 3, + 3, + 126, + 3 + ], + "nuv": [ + 0.023255813953488372, + 0.02, + 0.9767441860465116, + 0.02, + 0.023255813953488372, + 0.98, + 0.9767441860465116, + 0.98 + ], + "minPos": [ + -61.5, + -72, + 0 + ], + "maxPos": [ + 61.5, + 72, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0cef5b5-3974-4868-a818-a76acfee9504@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0cef5b5-3974-4868-a818-a76acfee9504@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.skel b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.skel new file mode 100644 index 0000000..89166bf Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.skel.meta b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.skel.meta new file mode 100644 index 0000000..1c5ca94 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20540/wing_20540.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "d0008149-acc8-43dd-bbad-46b69c91b322", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "a45b8e14-e3f9-4fb3-a82a-001ff1cee5bd" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20545.meta b/assets/static-res/Spine/DressGlare/wing_20545.meta new file mode 100644 index 0000000..a1567f0 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20545.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "f8dbbed9-c99b-4c95-b677-91d7df1ee248", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.atlas b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.atlas new file mode 100644 index 0000000..63bfc0b --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.atlas @@ -0,0 +1,118 @@ + +wing_20545.png +size: 348,184 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bxgz_pg + rotate: false + xy: 197, 85 + size: 99, 97 + orig: 99, 97 + offset: 0, 0 + index: -1 +bxgz_pg_bizi + rotate: false + xy: 338, 137 + size: 8, 15 + orig: 8, 15 + offset: 0, 0 + index: -1 +bxgz_pg_eye_close_R + rotate: false + xy: 317, 32 + size: 18, 13 + orig: 18, 13 + offset: 0, 0 + index: -1 +bxgz_pg_eye_gg_L + rotate: false + xy: 338, 127 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +bxgz_pg_eye_gg_R + rotate: false + xy: 339, 118 + size: 7, 7 + orig: 7, 7 + offset: 0, 0 + index: -1 +bxgz_pg_eye_tk_L + rotate: true + xy: 317, 17 + size: 13, 17 + orig: 13, 17 + offset: 0, 0 + index: -1 +bxgz_pg_eye_tk_R + rotate: true + xy: 327, 71 + size: 14, 17 + orig: 14, 17 + offset: 0, 0 + index: -1 +bxgz_pg_eye_yb_L + rotate: true + xy: 298, 78 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +bxgz_pg_eye_yb_R + rotate: true + xy: 317, 47 + size: 22, 25 + orig: 22, 25 + offset: 0, 0 + index: -1 +bxgz_pg_geng + rotate: true + xy: 298, 154 + size: 28, 44 + orig: 28, 44 + offset: 0, 0 + index: -1 +bxgz_pg_glow + rotate: true + xy: 2, 2 + size: 180, 193 + orig: 180, 193 + offset: 0, 0 + index: -1 +bxgz_pg_hdj1 + rotate: true + xy: 197, 2 + size: 81, 59 + orig: 81, 59 + offset: 0, 0 + index: -1 +bxgz_pg_hdj2 + rotate: true + xy: 298, 103 + size: 22, 39 + orig: 22, 39 + offset: 0, 0 + index: -1 +bxgz_pg_hdj3 + rotate: true + xy: 298, 127 + size: 25, 38 + orig: 25, 38 + offset: 0, 0 + index: -1 +bxgz_pg_star + rotate: true + xy: 258, 24 + size: 52, 57 + orig: 52, 57 + offset: 0, 0 + index: -1 +bxgz_pg_zb + rotate: false + xy: 327, 87 + size: 18, 14 + orig: 18, 14 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.atlas.meta new file mode 100644 index 0000000..94b74c9 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "3e1042ac-df2a-4af7-9ac0-3926452eaa3b", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.png b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.png new file mode 100644 index 0000000..cbbd955 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.png.meta b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.png.meta new file mode 100644 index 0000000..33aecfb --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b10cc46a-a36e-4e0a-aab7-6b2cc2421af0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b10cc46a-a36e-4e0a-aab7-6b2cc2421af0@6c48a", + "displayName": "wing_20545", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b10cc46a-a36e-4e0a-aab7-6b2cc2421af0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b10cc46a-a36e-4e0a-aab7-6b2cc2421af0@f9941", + "displayName": "wing_20545", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 342, + "height": 178, + "rawWidth": 348, + "rawHeight": 184, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -171, + -89, + 0, + 171, + -89, + 0, + -171, + 89, + 0, + 171, + 89, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 181, + 345, + 181, + 3, + 3, + 345, + 3 + ], + "nuv": [ + 0.008620689655172414, + 0.016304347826086956, + 0.9913793103448276, + 0.016304347826086956, + 0.008620689655172414, + 0.9836956521739131, + 0.9913793103448276, + 0.9836956521739131 + ], + "minPos": [ + -171, + -89, + 0 + ], + "maxPos": [ + 171, + 89, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b10cc46a-a36e-4e0a-aab7-6b2cc2421af0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b10cc46a-a36e-4e0a-aab7-6b2cc2421af0@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.skel b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.skel new file mode 100644 index 0000000..3b138dd Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.skel.meta b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.skel.meta new file mode 100644 index 0000000..53bb986 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20545/wing_20545.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "872840d5-ad04-4e91-8d55-2d82e1378c21", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "3e1042ac-df2a-4af7-9ac0-3926452eaa3b" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20550.meta b/assets/static-res/Spine/DressGlare/wing_20550.meta new file mode 100644 index 0000000..3a8fd14 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20550.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "6c4ac4ed-9acc-477c-b77b-e854b5132d70", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.atlas b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.atlas new file mode 100644 index 0000000..05e8876 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.atlas @@ -0,0 +1,76 @@ + +wing_20550.png +size: 334,277 +format: RGBA8888 +filter: Linear,Linear +repeat: none +jack_box_dwon + rotate: true + xy: 211, 140 + size: 135, 121 + orig: 135, 121 + offset: 0, 0 + index: -1 +jack_box_glod + rotate: false + xy: 2, 12 + size: 79, 43 + orig: 79, 43 + offset: 0, 0 + index: -1 +jack_box_glod1 + rotate: true + xy: 145, 25 + size: 30, 29 + orig: 30, 29 + offset: 0, 0 + index: -1 +jack_box_glod2 + rotate: true + xy: 176, 2 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +jack_box_glod3 + rotate: true + xy: 83, 4 + size: 18, 32 + orig: 18, 32 + offset: 0, 0 + index: -1 +jack_box_glod4 + rotate: false + xy: 83, 24 + size: 29, 31 + orig: 29, 31 + offset: 0, 0 + index: -1 +jack_box_glod5 + rotate: true + xy: 176, 27 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +jack_box_glod6 + rotate: true + xy: 114, 24 + size: 31, 29 + orig: 31, 29 + offset: 0, 0 + index: -1 +jack_box_glow + rotate: false + xy: 2, 57 + size: 207, 218 + orig: 207, 218 + offset: 0, 0 + index: -1 +jack_box_uo + rotate: false + xy: 211, 40 + size: 111, 98 + orig: 111, 98 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.atlas.meta new file mode 100644 index 0000000..0bd7fc0 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "677f41c4-af50-4b01-ab2e-156618aa43f0", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.png b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.png new file mode 100644 index 0000000..76d384e Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.png.meta b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.png.meta new file mode 100644 index 0000000..1bf6f5d --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3708211f-5084-4cb6-a992-8a0027e03c27", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3708211f-5084-4cb6-a992-8a0027e03c27@6c48a", + "displayName": "wing_20550", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3708211f-5084-4cb6-a992-8a0027e03c27", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3708211f-5084-4cb6-a992-8a0027e03c27@f9941", + "displayName": "wing_20550", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 328, + "height": 271, + "rawWidth": 334, + "rawHeight": 277, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -164, + -135.5, + 0, + 164, + -135.5, + 0, + -164, + 135.5, + 0, + 164, + 135.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 274, + 331, + 274, + 3, + 3, + 331, + 3 + ], + "nuv": [ + 0.008982035928143712, + 0.010830324909747292, + 0.9910179640718563, + 0.010830324909747292, + 0.008982035928143712, + 0.9891696750902527, + 0.9910179640718563, + 0.9891696750902527 + ], + "minPos": [ + -164, + -135.5, + 0 + ], + "maxPos": [ + 164, + 135.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3708211f-5084-4cb6-a992-8a0027e03c27@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3708211f-5084-4cb6-a992-8a0027e03c27@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.skel b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.skel new file mode 100644 index 0000000..b828200 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.skel.meta b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.skel.meta new file mode 100644 index 0000000..96d30d9 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20550/wing_20550.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "0a5300ef-8bf3-4a0c-ac9a-d6f1c55e3b79", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "677f41c4-af50-4b01-ab2e-156618aa43f0" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20555.meta b/assets/static-res/Spine/DressGlare/wing_20555.meta new file mode 100644 index 0000000..0e8b5b3 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20555.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e9cf49f8-9b71-4563-b92b-c120196f966d", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.atlas b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.atlas new file mode 100644 index 0000000..5860ccf --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.atlas @@ -0,0 +1,118 @@ + +wing_20555.png +size: 524,511 +format: RGBA8888 +filter: Linear,Linear +repeat: none +dengglow + rotate: false + xy: 251, 2 + size: 159, 159 + orig: 159, 159 + offset: 0, 0 + index: -1 +feichuan + rotate: false + xy: 2, 2 + size: 247, 167 + orig: 247, 167 + offset: 0, 0 + index: -1 +glow1 + rotate: false + xy: 113, 181 + size: 206, 119 + orig: 206, 119 + offset: 0, 0 + index: -1 +glow2 + rotate: false + xy: 321, 163 + size: 190, 149 + orig: 190, 149 + offset: 0, 0 + index: -1 +glow3 + rotate: false + xy: 251, 432 + size: 262, 77 + orig: 262, 77 + offset: 0, 0 + index: -1 +glow4 + rotate: true + xy: 2, 171 + size: 338, 109 + orig: 338, 109 + offset: 0, 0 + index: -1 +glow5 + rotate: true + xy: 113, 302 + size: 207, 124 + orig: 207, 124 + offset: 0, 0 + index: -1 +glow6 + rotate: false + xy: 239, 314 + size: 211, 116 + orig: 211, 116 + offset: 0, 0 + index: -1 +img_kejilizi_1 + rotate: false + xy: 286, 165 + size: 19, 14 + orig: 19, 14 + offset: 0, 0 + index: -1 +img_kejilizi_2 + rotate: false + xy: 251, 164 + size: 33, 15 + orig: 33, 15 + offset: 0, 0 + index: -1 +img_kejilizi_3 + rotate: true + xy: 501, 400 + size: 30, 17 + orig: 30, 17 + offset: 0, 0 + index: -1 +img_kejilizi_4 + rotate: true + xy: 501, 371 + size: 27, 11 + orig: 27, 11 + offset: 0, 0 + index: -1 +img_kejilizi_5 + rotate: false + xy: 452, 359 + size: 35, 35 + orig: 35, 35 + offset: 0, 0 + index: -1 +img_kejilizi_6 + rotate: true + xy: 452, 316 + size: 25, 29 + orig: 25, 29 + offset: 0, 0 + index: -1 +img_kejilizi_7 + rotate: false + xy: 489, 343 + size: 33, 26 + orig: 33, 26 + offset: 0, 0 + index: -1 +img_kejilizi_8 + rotate: false + xy: 452, 396 + size: 47, 34 + orig: 47, 34 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.atlas.meta new file mode 100644 index 0000000..ad15163 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "b701af48-dced-4624-8ac5-e533ea7d0f03", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.png b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.png new file mode 100644 index 0000000..8a2bfb6 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.png.meta b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.png.meta new file mode 100644 index 0000000..3032db2 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "88400c5a-7802-457e-8aab-f8eed710bd76", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "88400c5a-7802-457e-8aab-f8eed710bd76@6c48a", + "displayName": "wing_20555", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "88400c5a-7802-457e-8aab-f8eed710bd76", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "88400c5a-7802-457e-8aab-f8eed710bd76@f9941", + "displayName": "wing_20555", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 518, + "height": 505, + "rawWidth": 524, + "rawHeight": 511, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -259, + -252.5, + 0, + 259, + -252.5, + 0, + -259, + 252.5, + 0, + 259, + 252.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 508, + 521, + 508, + 3, + 3, + 521, + 3 + ], + "nuv": [ + 0.0057251908396946565, + 0.005870841487279843, + 0.9942748091603053, + 0.005870841487279843, + 0.0057251908396946565, + 0.9941291585127201, + 0.9942748091603053, + 0.9941291585127201 + ], + "minPos": [ + -259, + -252.5, + 0 + ], + "maxPos": [ + 259, + 252.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "88400c5a-7802-457e-8aab-f8eed710bd76@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "88400c5a-7802-457e-8aab-f8eed710bd76@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.skel b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.skel new file mode 100644 index 0000000..7a2bbbd Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.skel.meta b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.skel.meta new file mode 100644 index 0000000..4f29c15 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20555/wing_20555.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "04337f7c-8ad4-47cd-aef8-3056964395b3", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "b701af48-dced-4624-8ac5-e533ea7d0f03" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20560.meta b/assets/static-res/Spine/DressGlare/wing_20560.meta new file mode 100644 index 0000000..c27e5cf --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20560.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "76c1ed9e-1554-4601-bc00-3e537ef59610", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.atlas b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.atlas new file mode 100644 index 0000000..e0b76c1 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.atlas @@ -0,0 +1,251 @@ + +wing_20560.png +size: 1856,558 +format: RGBA8888 +filter: Linear,Linear +repeat: none +glasses/wing11_000 + rotate: true + xy: 2, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_001 + rotate: true + xy: 109, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_002 + rotate: false + xy: 74, 2 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_003 + rotate: true + xy: 216, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_004 + rotate: true + xy: 323, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_005 + rotate: true + xy: 430, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_006 + rotate: false + xy: 410, 2 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_007 + rotate: true + xy: 537, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_008 + rotate: true + xy: 644, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_009 + rotate: true + xy: 751, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_010 + rotate: false + xy: 746, 2 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_011 + rotate: true + xy: 858, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_012 + rotate: true + xy: 965, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_013 + rotate: true + xy: 1072, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_014 + rotate: true + xy: 1179, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_015 + rotate: false + xy: 1082, 2 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_016 + rotate: false + xy: 1184, 115 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_017 + rotate: true + xy: 1286, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_018 + rotate: true + xy: 1393, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_019 + rotate: true + xy: 1500, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_020 + rotate: false + xy: 1418, 8 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_021 + rotate: false + xy: 1520, 115 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_022 + rotate: true + xy: 1607, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing11_023 + rotate: true + xy: 1714, 222 + size: 334, 105 + orig: 334, 105 + offset: 0, 0 + index: -1 +glasses/wing_xing_000 + rotate: false + xy: 74, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_001 + rotate: false + xy: 185, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_002 + rotate: false + xy: 296, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_003 + rotate: false + xy: 407, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_004 + rotate: false + xy: 518, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_005 + rotate: false + xy: 629, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_006 + rotate: false + xy: 740, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_007 + rotate: false + xy: 851, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_008 + rotate: false + xy: 962, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +glasses/wing_xing_009 + rotate: false + xy: 1073, 109 + size: 109, 111 + orig: 109, 111 + offset: 0, 0 + index: -1 +wing_20540_gunzi + rotate: false + xy: 2, 21 + size: 70, 199 + orig: 70, 199 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.atlas.meta new file mode 100644 index 0000000..2ec80c6 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "76ca80eb-87ed-455c-af4f-77cef1a68e28", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.png b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.png new file mode 100644 index 0000000..66dbb6f Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.png.meta b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.png.meta new file mode 100644 index 0000000..26308b7 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "76ec0e72-e00c-4b80-8c49-0c9a48887047", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "76ec0e72-e00c-4b80-8c49-0c9a48887047@6c48a", + "displayName": "wing_20560", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "76ec0e72-e00c-4b80-8c49-0c9a48887047", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "76ec0e72-e00c-4b80-8c49-0c9a48887047@f9941", + "displayName": "wing_20560", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19.5, + "offsetY": 0.5, + "trimX": 3, + "trimY": 4, + "width": 1811, + "height": 549, + "rawWidth": 1856, + "rawHeight": 558, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -905.5, + -274.5, + 0, + 905.5, + -274.5, + 0, + -905.5, + 274.5, + 0, + 905.5, + 274.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 554, + 1814, + 554, + 3, + 5, + 1814, + 5 + ], + "nuv": [ + 0.0016163793103448276, + 0.008960573476702509, + 0.9773706896551724, + 0.008960573476702509, + 0.0016163793103448276, + 0.992831541218638, + 0.9773706896551724, + 0.992831541218638 + ], + "minPos": [ + -905.5, + -274.5, + 0 + ], + "maxPos": [ + 905.5, + 274.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "76ec0e72-e00c-4b80-8c49-0c9a48887047@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "76ec0e72-e00c-4b80-8c49-0c9a48887047@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.skel b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.skel new file mode 100644 index 0000000..7f3cc9d Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.skel.meta b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.skel.meta new file mode 100644 index 0000000..4d4ce6a --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20560/wing_20560.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "64ae9575-87b3-4c11-bff6-78a6fc24610f", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "76ca80eb-87ed-455c-af4f-77cef1a68e28" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20565.meta b/assets/static-res/Spine/DressGlare/wing_20565.meta new file mode 100644 index 0000000..d50bb53 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20565.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "bbe29d30-2ba1-4a55-b6d4-6aaf16c211f6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.atlas b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.atlas new file mode 100644 index 0000000..10e9c3d --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.atlas @@ -0,0 +1,209 @@ + +wing_20565.png +size: 1268,300 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xx_bl_daizi_1 + rotate: true + xy: 729, 82 + size: 47, 131 + orig: 47, 131 + offset: 0, 0 + index: -1 +xx_bl_daizi_2 + rotate: false + xy: 862, 9 + size: 63, 122 + orig: 63, 122 + offset: 0, 0 + index: -1 +xx_deng1 + rotate: false + xy: 1223, 207 + size: 43, 91 + orig: 43, 91 + offset: 0, 0 + index: -1 +xx_deng_glow_1 + rotate: false + xy: 1115, 14 + size: 46, 46 + orig: 46, 46 + offset: 0, 0 + index: -1 +xx_deng_glow_2 + rotate: true + xy: 560, 3 + size: 76, 75 + orig: 76, 75 + offset: 0, 0 + index: -1 +xx_lizi1 + rotate: true + xy: 838, 29 + size: 19, 20 + orig: 19, 20 + offset: 0, 0 + index: -1 +xx_lizi1ck + rotate: true + xy: 893, 136 + size: 162, 86 + orig: 162, 86 + offset: 0, 0 + index: -1 +xx_she_shet + rotate: false + xy: 969, 7 + size: 27, 11 + orig: 27, 11 + offset: 0, 0 + index: -1 +xx_shetou + rotate: true + xy: 1032, 49 + size: 92, 81 + orig: 92, 81 + offset: 0, 0 + index: -1 +xx_shetou_glow + rotate: true + xy: 927, 20 + size: 114, 103 + orig: 114, 103 + offset: 0, 0 + index: -1 +xx_shetouyy + rotate: false + xy: 1198, 86 + size: 66, 64 + orig: 66, 64 + offset: 0, 0 + index: -1 +xx_star1 + rotate: true + xy: 1064, 17 + size: 30, 29 + orig: 30, 29 + offset: 0, 0 + index: -1 +xx_yezi1 + rotate: false + xy: 786, 6 + size: 50, 74 + orig: 50, 74 + offset: 0, 0 + index: -1 +xx_yezi2 + rotate: false + xy: 1032, 17 + size: 30, 30 + orig: 30, 30 + offset: 0, 0 + index: -1 +xx_yezi3 + rotate: true + xy: 1223, 152 + size: 53, 37 + orig: 53, 37 + offset: 0, 0 + index: -1 +xx_yun_b + rotate: true + xy: 430, 12 + size: 286, 128 + orig: 286, 128 + offset: 0, 0 + index: -1 +xx_yun_bglow + rotate: true + xy: 2, 2 + size: 296, 139 + orig: 296, 139 + offset: 0, 0 + index: -1 +xx_yun_f + rotate: false + xy: 637, 5 + size: 147, 74 + orig: 147, 74 + offset: 0, 0 + index: -1 +xx_yun_fglow + rotate: true + xy: 981, 143 + size: 155, 84 + orig: 155, 84 + offset: 0, 0 + index: -1 +xx_zheyang1 + rotate: true + xy: 752, 133 + size: 165, 139 + orig: 165, 139 + offset: 0, 0 + index: -1 +xx_zheyang2 + rotate: true + xy: 694, 131 + size: 167, 56 + orig: 167, 56 + offset: 0, 0 + index: -1 +xx_zheyang3 + rotate: true + xy: 560, 81 + size: 217, 132 + orig: 217, 132 + offset: 0, 0 + index: -1 +xx_zhulou + rotate: false + xy: 1067, 152 + size: 154, 146 + orig: 154, 146 + offset: 0, 0 + index: -1 +xx_zhulou_f_glow + rotate: false + xy: 1115, 62 + size: 81, 88 + orig: 81, 88 + offset: 0, 0 + index: -1 +xx_zhulou_glow + rotate: false + xy: 143, 9 + size: 285, 289 + orig: 285, 289 + offset: 0, 0 + index: -1 +xx_zhutong + rotate: true + xy: 1198, 38 + size: 46, 61 + orig: 46, 61 + offset: 0, 0 + index: -1 +xx_zhutong_daizi1 + rotate: true + xy: 927, 6 + size: 12, 40 + orig: 12, 40 + offset: 0, 0 + index: -1 +xx_zhutong_daizi2 + rotate: false + xy: 838, 50 + size: 22, 30 + orig: 22, 30 + offset: 0, 0 + index: -1 +xx_zhutong_glow + rotate: false + xy: 694, 81 + size: 33, 48 + orig: 33, 48 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.atlas.meta new file mode 100644 index 0000000..135fe05 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "d6be7a23-4f7a-4be1-885a-2d76d5563f62", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.png b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.png new file mode 100644 index 0000000..0345724 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.png.meta b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.png.meta new file mode 100644 index 0000000..ed0e453 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90e57c01-64ff-4f7f-a968-f73fa2c5595a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90e57c01-64ff-4f7f-a968-f73fa2c5595a@6c48a", + "displayName": "wing_20565", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90e57c01-64ff-4f7f-a968-f73fa2c5595a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "90e57c01-64ff-4f7f-a968-f73fa2c5595a@f9941", + "displayName": "wing_20565", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 1262, + "height": 294, + "rawWidth": 1268, + "rawHeight": 300, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -631, + -147, + 0, + 631, + -147, + 0, + -631, + 147, + 0, + 631, + 147, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 297, + 1265, + 297, + 3, + 3, + 1265, + 3 + ], + "nuv": [ + 0.002365930599369085, + 0.01, + 0.9976340694006309, + 0.01, + 0.002365930599369085, + 0.99, + 0.9976340694006309, + 0.99 + ], + "minPos": [ + -631, + -147, + 0 + ], + "maxPos": [ + 631, + 147, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90e57c01-64ff-4f7f-a968-f73fa2c5595a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90e57c01-64ff-4f7f-a968-f73fa2c5595a@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.skel b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.skel new file mode 100644 index 0000000..0a10f0b Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.skel.meta b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.skel.meta new file mode 100644 index 0000000..67dd413 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20565/wing_20565.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "cfc5147c-b91e-4678-8305-a564f6f04ba0", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "d6be7a23-4f7a-4be1-885a-2d76d5563f62" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20570.meta b/assets/static-res/Spine/DressGlare/wing_20570.meta new file mode 100644 index 0000000..32ad663 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20570.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "9bf0961c-12bd-4837-8453-210836bf65e8", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.atlas b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.atlas new file mode 100644 index 0000000..06d72af --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.atlas @@ -0,0 +1,34 @@ + +wing_20570.png +size: 129,150 +format: RGBA8888 +filter: Linear,Linear +repeat: none +wing_20540 + rotate: true + xy: 2, 41 + size: 107, 125 + orig: 107, 125 + offset: 0, 0 + index: -1 +wing_20540_l + rotate: true + xy: 2, 2 + size: 37, 44 + orig: 37, 44 + offset: 0, 0 + index: -1 +wing_20540_r + rotate: true + xy: 48, 3 + size: 36, 41 + orig: 36, 41 + offset: 0, 0 + index: -1 +wing_20540_t + rotate: true + xy: 91, 2 + size: 37, 26 + orig: 37, 26 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.atlas.meta new file mode 100644 index 0000000..a27182f --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "dbf1da29-788c-46e9-aa82-f237dc5d829d", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.png b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.png new file mode 100644 index 0000000..35c5ce9 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.png.meta b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.png.meta new file mode 100644 index 0000000..54e0340 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e000e6ad-8d48-429f-907a-5a4bc06ceab0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e000e6ad-8d48-429f-907a-5a4bc06ceab0@6c48a", + "displayName": "wing_20570", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e000e6ad-8d48-429f-907a-5a4bc06ceab0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e000e6ad-8d48-429f-907a-5a4bc06ceab0@f9941", + "displayName": "wing_20570", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 123, + "height": 144, + "rawWidth": 129, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -61.5, + -72, + 0, + 61.5, + -72, + 0, + -61.5, + 72, + 0, + 61.5, + 72, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 147, + 126, + 147, + 3, + 3, + 126, + 3 + ], + "nuv": [ + 0.023255813953488372, + 0.02, + 0.9767441860465116, + 0.02, + 0.023255813953488372, + 0.98, + 0.9767441860465116, + 0.98 + ], + "minPos": [ + -61.5, + -72, + 0 + ], + "maxPos": [ + 61.5, + 72, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e000e6ad-8d48-429f-907a-5a4bc06ceab0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e000e6ad-8d48-429f-907a-5a4bc06ceab0@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.skel b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.skel new file mode 100644 index 0000000..09a3cf7 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.skel.meta b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.skel.meta new file mode 100644 index 0000000..432e232 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20570/wing_20570.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "010a1dea-c45b-467b-9158-b2cf8d89de4b", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "dbf1da29-788c-46e9-aa82-f237dc5d829d" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20575.meta b/assets/static-res/Spine/DressGlare/wing_20575.meta new file mode 100644 index 0000000..c01a2fe --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20575.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "94b37c2b-c0e5-47e0-98e8-d48f7e5cccf8", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.atlas b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.atlas new file mode 100644 index 0000000..9af5328 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.atlas @@ -0,0 +1,300 @@ + +wing_20575.png +size: 2012,205 +format: RGBA8888 +filter: Linear,Linear +repeat: none +Superman_Hand + rotate: false + xy: 406, 8 + size: 99, 67 + orig: 99, 67 + offset: 0, 0 + index: -1 +Superman_body + rotate: true + xy: 1927, 86 + size: 117, 81 + orig: 117, 81 + offset: 0, 0 + index: -1 +Superman_dian + rotate: false + xy: 527, 10 + size: 13, 13 + orig: 13, 13 + offset: 0, 0 + index: -1 +Superman_ear_L + rotate: true + xy: 1927, 32 + size: 52, 74 + orig: 52, 74 + offset: 0, 0 + index: -1 +Superman_ear_R + rotate: true + xy: 1927, 2 + size: 28, 48 + orig: 28, 48 + offset: 0, 0 + index: -1 +Superman_ht1 + rotate: false + xy: 231, 6 + size: 36, 29 + orig: 36, 29 + offset: 0, 0 + index: -1 +Superman_ht2 + rotate: false + xy: 1977, 4 + size: 33, 26 + orig: 33, 26 + offset: 0, 0 + index: -1 +Superman_paizi + rotate: true + xy: 550, 35 + size: 40, 23 + orig: 40, 23 + offset: 0, 0 + index: -1 +Superman_pf + rotate: false + xy: 1763, 114 + size: 162, 89 + orig: 162, 89 + offset: 0, 0 + index: -1 +Superman_pf_glow + rotate: false + xy: 1763, 23 + size: 162, 89 + orig: 162, 89 + offset: 0, 0 + index: -1 +Superman_qt1 + rotate: false + xy: 269, 8 + size: 45, 27 + orig: 45, 27 + offset: 0, 0 + index: -1 +Superman_qt2 + rotate: false + xy: 316, 9 + size: 41, 26 + orig: 41, 26 + offset: 0, 0 + index: -1 +Superman_star + rotate: true + xy: 507, 25 + size: 50, 41 + orig: 50, 41 + offset: 0, 0 + index: -1 +biu + rotate: true + xy: 550, 15 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +glow1 + rotate: false + xy: 406, 77 + size: 167, 126 + orig: 167, 126 + offset: 0, 0 + index: -1 +guang + rotate: false + xy: 2, 34 + size: 227, 169 + orig: 227, 169 + offset: 0, 0 + index: -1 +img_glow_000 + rotate: false + xy: 575, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_001 + rotate: false + xy: 674, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_002 + rotate: false + xy: 773, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_003 + rotate: false + xy: 872, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_004 + rotate: false + xy: 971, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_005 + rotate: false + xy: 1070, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_006 + rotate: false + xy: 1169, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_007 + rotate: false + xy: 1268, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_008 + rotate: false + xy: 1367, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_009 + rotate: false + xy: 1466, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_010 + rotate: false + xy: 1565, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_011 + rotate: false + xy: 1664, 108 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_012 + rotate: false + xy: 575, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_013 + rotate: false + xy: 674, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_014 + rotate: false + xy: 773, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_015 + rotate: false + xy: 872, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_016 + rotate: false + xy: 971, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_017 + rotate: false + xy: 1070, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_018 + rotate: false + xy: 1169, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_019 + rotate: false + xy: 1268, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_020 + rotate: false + xy: 1367, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_021 + rotate: false + xy: 1466, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_022 + rotate: false + xy: 1565, 11 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_023 + rotate: true + xy: 1664, 9 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +kms_lizi + rotate: true + xy: 507, 7 + size: 16, 18 + orig: 16, 18 + offset: 0, 0 + index: -1 +texiao + rotate: false + xy: 231, 37 + size: 173, 166 + orig: 173, 166 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.atlas.meta new file mode 100644 index 0000000..cbbbe2b --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "242db0af-d0cc-4bb8-b582-7ef5d47f6c2d", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.png b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.png new file mode 100644 index 0000000..f92bdcc Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.png.meta b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.png.meta new file mode 100644 index 0000000..d8c966c --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cfaec544-cd14-490c-8741-aab99d9bdac3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cfaec544-cd14-490c-8741-aab99d9bdac3@6c48a", + "displayName": "wing_20575", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cfaec544-cd14-490c-8741-aab99d9bdac3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cfaec544-cd14-490c-8741-aab99d9bdac3@f9941", + "displayName": "wing_20575", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 2006, + "height": 199, + "rawWidth": 2012, + "rawHeight": 205, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -1003, + -99.5, + 0, + 1003, + -99.5, + 0, + -1003, + 99.5, + 0, + 1003, + 99.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 202, + 2009, + 202, + 3, + 3, + 2009, + 3 + ], + "nuv": [ + 0.0014910536779324055, + 0.014634146341463415, + 0.9985089463220675, + 0.014634146341463415, + 0.0014910536779324055, + 0.9853658536585366, + 0.9985089463220675, + 0.9853658536585366 + ], + "minPos": [ + -1003, + -99.5, + 0 + ], + "maxPos": [ + 1003, + 99.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cfaec544-cd14-490c-8741-aab99d9bdac3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cfaec544-cd14-490c-8741-aab99d9bdac3@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.skel b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.skel new file mode 100644 index 0000000..3a9c0ce Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.skel.meta b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.skel.meta new file mode 100644 index 0000000..3ef85ab --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20575/wing_20575.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "86b2db4c-316e-4f8c-8386-b94f62cd30aa", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "242db0af-d0cc-4bb8-b582-7ef5d47f6c2d" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20580.meta b/assets/static-res/Spine/DressGlare/wing_20580.meta new file mode 100644 index 0000000..e914dba --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20580.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "cdce381c-590b-458c-8f82-cdf967282a0a", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.atlas b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.atlas new file mode 100644 index 0000000..ffdba84 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.atlas @@ -0,0 +1,342 @@ + +wing_20580.png +size: 1825,379 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bbf_car + rotate: true + xy: 573, 117 + size: 260, 179 + orig: 260, 179 + offset: 0, 0 + index: -1 +bbf_car_biao + rotate: false + xy: 1279, 143 + size: 36, 36 + orig: 36, 36 + offset: 0, 0 + index: -1 +bbf_car_diguang1 + rotate: true + xy: 397, 5 + size: 372, 174 + orig: 372, 174 + offset: 0, 0 + index: -1 +bbf_car_diguang2 + rotate: true + xy: 203, 25 + size: 352, 192 + orig: 352, 192 + offset: 0, 0 + index: -1 +bbf_car_diguang3 + rotate: true + xy: 2, 30 + size: 347, 199 + orig: 347, 199 + offset: 0, 0 + index: -1 +bbf_car_glow + rotate: true + xy: 754, 117 + size: 260, 179 + orig: 260, 179 + offset: 0, 0 + index: -1 +bbf_car_lungu + rotate: false + xy: 1688, 23 + size: 56, 57 + orig: 56, 57 + offset: 0, 0 + index: -1 +bbf_car_luntai_b + rotate: true + xy: 1711, 283 + size: 94, 95 + orig: 94, 95 + offset: 0, 0 + index: -1 +bbf_car_luntai_f + rotate: false + xy: 1711, 186 + size: 94, 95 + orig: 94, 95 + offset: 0, 0 + index: -1 +bbf_car_star1 + rotate: false + xy: 1631, 20 + size: 55, 60 + orig: 55, 60 + offset: 0, 0 + index: -1 +bbf_car_star2 + rotate: true + xy: 1746, 28 + size: 52, 50 + orig: 52, 50 + offset: 0, 0 + index: -1 +bbf_car_star3 + rotate: false + xy: 1777, 138 + size: 46, 46 + orig: 46, 46 + offset: 0, 0 + index: -1 +bbf_car_star4 + rotate: false + xy: 1317, 145 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +bbf_car_star5 + rotate: false + xy: 1777, 90 + size: 46, 46 + orig: 46, 46 + offset: 0, 0 + index: -1 +bbf_car_suduxian1 + rotate: false + xy: 935, 117 + size: 137, 62 + orig: 137, 62 + offset: 0, 0 + index: -1 +bbf_car_suduxian2 + rotate: false + xy: 1180, 135 + size: 97, 44 + orig: 97, 44 + offset: 0, 0 + index: -1 +bbf_car_suduxian3 + rotate: false + xy: 1074, 132 + size: 104, 47 + orig: 104, 47 + offset: 0, 0 + index: -1 +bbf_car_suduxian4 + rotate: false + xy: 573, 16 + size: 212, 99 + orig: 212, 99 + offset: 0, 0 + index: -1 +bbf_car_suduxian5 + rotate: false + xy: 787, 16 + size: 212, 99 + orig: 212, 99 + offset: 0, 0 + index: -1 +bbf_car_suduxian6 + rotate: false + xy: 1389, 9 + size: 129, 71 + orig: 129, 71 + offset: 0, 0 + index: -1 +bbf_carlingu_yyh + rotate: false + xy: 1580, 12 + size: 49, 68 + orig: 49, 68 + offset: 0, 0 + index: -1 +bbf_carlingu_yyq + rotate: false + xy: 1520, 8 + size: 58, 72 + orig: 58, 72 + offset: 0, 0 + index: -1 +img_glow_000 + rotate: true + xy: 935, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_001 + rotate: true + xy: 935, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_002 + rotate: true + xy: 1001, 18 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_003 + rotate: true + xy: 1032, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_004 + rotate: true + xy: 1032, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_005 + rotate: true + xy: 1098, 33 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_006 + rotate: true + xy: 1129, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_007 + rotate: true + xy: 1129, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_008 + rotate: true + xy: 1195, 36 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_009 + rotate: true + xy: 1226, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_010 + rotate: true + xy: 1226, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_011 + rotate: true + xy: 1292, 44 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_012 + rotate: true + xy: 1323, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_013 + rotate: true + xy: 1323, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_014 + rotate: true + xy: 1389, 82 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_015 + rotate: true + xy: 1420, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_016 + rotate: true + xy: 1420, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_017 + rotate: true + xy: 1486, 82 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_018 + rotate: true + xy: 1517, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_019 + rotate: true + xy: 1517, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_020 + rotate: true + xy: 1583, 82 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_021 + rotate: true + xy: 1614, 280 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_022 + rotate: true + xy: 1614, 181 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +img_glow_023 + rotate: true + xy: 1680, 82 + size: 97, 95 + orig: 97, 95 + offset: 0, 0 + index: -1 +sdx1 + rotate: true + xy: 2, 15 + size: 13, 141 + orig: 13, 141 + offset: 0, 0 + index: -1 +sdx3 + rotate: true + xy: 2, 2 + size: 11, 79 + orig: 11, 79 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.atlas.meta new file mode 100644 index 0000000..11eb390 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "46014e9d-ab67-4bf4-9895-d5f3e9c94a76", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.png b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.png new file mode 100644 index 0000000..fdfac55 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.png.meta b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.png.meta new file mode 100644 index 0000000..4526e16 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b95a6ab7-fb58-4bf7-a2ad-5f8fc5abe0c3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b95a6ab7-fb58-4bf7-a2ad-5f8fc5abe0c3@6c48a", + "displayName": "wing_20580", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b95a6ab7-fb58-4bf7-a2ad-5f8fc5abe0c3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b95a6ab7-fb58-4bf7-a2ad-5f8fc5abe0c3@f9941", + "displayName": "wing_20580", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0.5, + "trimX": 2, + "trimY": 2, + "width": 1820, + "height": 374, + "rawWidth": 1825, + "rawHeight": 379, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -910, + -187, + 0, + 910, + -187, + 0, + -910, + 187, + 0, + 910, + 187, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 377, + 1822, + 377, + 2, + 3, + 1822, + 3 + ], + "nuv": [ + 0.001095890410958904, + 0.0079155672823219, + 0.9983561643835617, + 0.0079155672823219, + 0.001095890410958904, + 0.9947229551451188, + 0.9983561643835617, + 0.9947229551451188 + ], + "minPos": [ + -910, + -187, + 0 + ], + "maxPos": [ + 910, + 187, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b95a6ab7-fb58-4bf7-a2ad-5f8fc5abe0c3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b95a6ab7-fb58-4bf7-a2ad-5f8fc5abe0c3@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.skel b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.skel new file mode 100644 index 0000000..68e6419 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.skel.meta b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.skel.meta new file mode 100644 index 0000000..2142569 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20580/wing_20580.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "e0be5b5a-2c00-43ce-88bd-4d47a9f2f0a9", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "46014e9d-ab67-4bf4-9895-d5f3e9c94a76" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20585.meta b/assets/static-res/Spine/DressGlare/wing_20585.meta new file mode 100644 index 0000000..0a2e797 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20585.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b994b0f0-0c3c-45be-8004-3b10b6e013b6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.atlas b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.atlas new file mode 100644 index 0000000..0186748 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.atlas @@ -0,0 +1,188 @@ + +wing_20585.png +size: 554,316 +format: RGBA8888 +filter: Linear,Linear +repeat: none +img_kejilizi_1 + rotate: true + xy: 464, 90 + size: 19, 14 + orig: 19, 14 + offset: 0, 0 + index: -1 +img_kejilizi_5 + rotate: false + xy: 374, 7 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +jqr_body + rotate: false + xy: 345, 167 + size: 161, 147 + orig: 161, 147 + offset: 0, 0 + index: -1 +jqr_body_glow + rotate: true + xy: 2, 2 + size: 312, 341 + orig: 312, 341 + offset: 0, 0 + index: -1 +jqr_bq_eye_L_1 + rotate: true + xy: 481, 89 + size: 26, 32 + orig: 26, 32 + offset: 0, 0 + index: -1 +jqr_bq_eye_L_1yy + rotate: false + xy: 515, 152 + size: 37, 41 + orig: 37, 41 + offset: 0, 0 + index: -1 +jqr_bq_eye_L_2 + rotate: false + xy: 419, 85 + size: 43, 24 + orig: 43, 24 + offset: 0, 0 + index: -1 +jqr_bq_eye_L_2uu + rotate: true + xy: 508, 195 + size: 50, 33 + orig: 50, 33 + offset: 0, 0 + index: -1 +jqr_bq_eye_R_1 + rotate: false + xy: 483, 56 + size: 24, 31 + orig: 24, 31 + offset: 0, 0 + index: -1 +jqr_bq_eye_R_1yy + rotate: false + xy: 515, 109 + size: 34, 41 + orig: 34, 41 + offset: 0, 0 + index: -1 +jqr_bq_eye_R_2 + rotate: false + xy: 412, 27 + size: 40, 24 + orig: 40, 24 + offset: 0, 0 + index: -1 +jqr_bq_eye_R_2yy + rotate: true + xy: 481, 117 + size: 48, 32 + orig: 48, 32 + offset: 0, 0 + index: -1 +jqr_bq_mouth1 + rotate: false + xy: 345, 5 + size: 27, 20 + orig: 27, 20 + offset: 0, 0 + index: -1 +jqr_bq_mouth1yy + rotate: false + xy: 412, 53 + size: 40, 30 + orig: 40, 30 + offset: 0, 0 + index: -1 +jqr_bq_mouth2 + rotate: false + xy: 454, 51 + size: 27, 32 + orig: 27, 32 + offset: 0, 0 + index: -1 +jqr_bq_mouth2yy + rotate: true + xy: 515, 75 + size: 32, 35 + orig: 32, 35 + offset: 0, 0 + index: -1 +jqr_ear_L + rotate: false + xy: 419, 111 + size: 60, 54 + orig: 60, 54 + offset: 0, 0 + index: -1 +jqr_ear_R + rotate: false + xy: 508, 247 + size: 42, 67 + orig: 42, 67 + offset: 0, 0 + index: -1 +jqr_qiu1 + rotate: false + xy: 345, 93 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +jqr_qiu2 + rotate: false + xy: 394, 15 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +jqr_qiu3 + rotate: false + xy: 468, 43 + size: 6, 6 + orig: 6, 6 + offset: 0, 0 + index: -1 +jqr_qiu4 + rotate: false + xy: 468, 43 + size: 6, 6 + orig: 6, 6 + offset: 0, 0 + index: -1 +jqr_qiu5 + rotate: false + xy: 543, 238 + size: 7, 7 + orig: 7, 7 + offset: 0, 0 + index: -1 +jqr_qiu6 + rotate: false + xy: 454, 37 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +jqr_qiu7 + rotate: false + xy: 454, 28 + size: 7, 7 + orig: 7, 7 + offset: 0, 0 + index: -1 +jqr_qiuglow + rotate: false + xy: 345, 27 + size: 65, 64 + orig: 65, 64 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.atlas.meta b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.atlas.meta new file mode 100644 index 0000000..1989f8f --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "83635fb6-5073-427d-9ff3-5dc32b91bf22", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.png b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.png new file mode 100644 index 0000000..f68ebb1 Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.png differ diff --git a/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.png.meta b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.png.meta new file mode 100644 index 0000000..66786ae --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2421eff2-fc77-4181-a7a9-e3fe4f61c051", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2421eff2-fc77-4181-a7a9-e3fe4f61c051@6c48a", + "displayName": "wing_20585", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2421eff2-fc77-4181-a7a9-e3fe4f61c051", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2421eff2-fc77-4181-a7a9-e3fe4f61c051@f9941", + "displayName": "wing_20585", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 3, + "trimY": 3, + "width": 548, + "height": 310, + "rawWidth": 554, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -274, + -155, + 0, + 274, + -155, + 0, + -274, + 155, + 0, + 274, + 155, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 3, + 313, + 551, + 313, + 3, + 3, + 551, + 3 + ], + "nuv": [ + 0.005415162454873646, + 0.00949367088607595, + 0.9945848375451264, + 0.00949367088607595, + 0.005415162454873646, + 0.990506329113924, + 0.9945848375451264, + 0.990506329113924 + ], + "minPos": [ + -274, + -155, + 0 + ], + "maxPos": [ + 274, + 155, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2421eff2-fc77-4181-a7a9-e3fe4f61c051@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2421eff2-fc77-4181-a7a9-e3fe4f61c051@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.skel b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.skel new file mode 100644 index 0000000..da9ff5a Binary files /dev/null and b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.skel differ diff --git a/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.skel.meta b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.skel.meta new file mode 100644 index 0000000..7c5b360 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/wing_20585/wing_20585.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "f236addc-e498-412a-949d-a261eb410e96", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "83635fb6-5073-427d-9ff3-5dc32b91bf22" + } +} diff --git a/assets/static-res/Spine/DressGlare/yanyuedao.meta b/assets/static-res/Spine/DressGlare/yanyuedao.meta new file mode 100644 index 0000000..bf7e936 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/yanyuedao.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "f547dce9-8553-443e-8ad7-111a03338c85", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.atlas b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.atlas new file mode 100644 index 0000000..59985e7 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.atlas @@ -0,0 +1,160 @@ + +yanyuedao.png +size: 1430,508 +format: RGBA8888 +filter: Linear,Linear +repeat: none +yyd + rotate: false + xy: 195, 154 + size: 143, 352 + orig: 143, 352 + offset: 0, 0 + index: -1 +yyd_glow + rotate: false + xy: 2, 101 + size: 191, 405 + orig: 191, 405 + offset: 0, 0 + index: -1 +yyd_glow_000 + rotate: false + xy: 340, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_001 + rotate: false + xy: 342, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_002 + rotate: false + xy: 476, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_003 + rotate: false + xy: 478, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_004 + rotate: false + xy: 612, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_005 + rotate: false + xy: 614, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_006 + rotate: false + xy: 748, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_007 + rotate: false + xy: 750, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_008 + rotate: false + xy: 884, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_009 + rotate: false + xy: 886, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_010 + rotate: false + xy: 1020, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_011 + rotate: false + xy: 1022, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_012 + rotate: false + xy: 1156, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_013 + rotate: false + xy: 1158, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_014 + rotate: false + xy: 1292, 255 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_glow_015 + rotate: false + xy: 1294, 2 + size: 134, 251 + orig: 134, 251 + offset: 0, 0 + index: -1 +yyd_star01 + rotate: false + xy: 195, 7 + size: 145, 145 + orig: 145, 145 + offset: 0, 0 + index: -1 +yyd_star02 + rotate: false + xy: 76, 66 + size: 27, 33 + orig: 27, 33 + offset: 0, 0 + index: -1 +yyd_star03 + rotate: true + xy: 2, 3 + size: 10, 9 + orig: 10, 9 + offset: 0, 0 + index: -1 +yyd_zs1 + rotate: true + xy: 2, 15 + size: 84, 72 + orig: 84, 72 + offset: 0, 0 + index: -1 diff --git a/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.atlas.meta b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.atlas.meta new file mode 100644 index 0000000..cd50b81 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.atlas.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "*", + "imported": true, + "uuid": "a2173b40-e769-407e-826b-dda5bc6e36a2", + "files": [ + ".atlas", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.png b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.png new file mode 100644 index 0000000..110172d Binary files /dev/null and b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.png differ diff --git a/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.png.meta b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.png.meta new file mode 100644 index 0000000..399a8ac --- /dev/null +++ b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "99651d83-eccc-4046-b2d2-a142006b97e0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "99651d83-eccc-4046-b2d2-a142006b97e0@6c48a", + "displayName": "yanyuedao", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "99651d83-eccc-4046-b2d2-a142006b97e0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "99651d83-eccc-4046-b2d2-a142006b97e0@f9941", + "displayName": "yanyuedao", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 0, + "trimX": 2, + "trimY": 3, + "width": 1392, + "height": 502, + "rawWidth": 1430, + "rawHeight": 508, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -696, + -251, + 0, + 696, + -251, + 0, + -696, + 251, + 0, + 696, + 251, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 505, + 1394, + 505, + 2, + 3, + 1394, + 3 + ], + "nuv": [ + 0.0013986013986013986, + 0.005905511811023622, + 0.9748251748251748, + 0.005905511811023622, + 0.0013986013986013986, + 0.9940944881889764, + 0.9748251748251748, + 0.9940944881889764 + ], + "minPos": [ + -696, + -251, + 0 + ], + "maxPos": [ + 696, + 251, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "99651d83-eccc-4046-b2d2-a142006b97e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "99651d83-eccc-4046-b2d2-a142006b97e0@6c48a" + } +} diff --git a/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.skel b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.skel new file mode 100644 index 0000000..d53968e Binary files /dev/null and b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.skel differ diff --git a/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.skel.meta b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.skel.meta new file mode 100644 index 0000000..4877b83 --- /dev/null +++ b/assets/static-res/Spine/DressGlare/yanyuedao/yanyuedao.skel.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.7", + "importer": "spine-data", + "imported": true, + "uuid": "286f1f73-4cf2-4bc0-8035-ddc147dd21a0", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": { + "atlasUuid": "a2173b40-e769-407e-826b-dda5bc6e36a2" + } +} diff --git a/assets/static-res/UI/Notify_Count_Green_s.png.meta b/assets/static-res/UI/Notify_Count_Green_s.png.meta index 1967fea..ed241a5 100644 --- a/assets/static-res/UI/Notify_Count_Green_s.png.meta +++ b/assets/static-res/UI/Notify_Count_Green_s.png.meta @@ -52,8 +52,8 @@ "rawHeight": 79, "borderTop": 0, "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderLeft": 40, + "borderRight": 39, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/static-res/shc.meta b/assets/static-res/shc.meta new file mode 100644 index 0000000..9c86527 --- /dev/null +++ b/assets/static-res/shc.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "dfa08716-e8a3-4a62-939d-487f82c74eb0", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/shc/Edit.png b/assets/static-res/shc/Edit.png new file mode 100644 index 0000000..f0bd160 Binary files /dev/null and b/assets/static-res/shc/Edit.png differ diff --git a/assets/static-res/shc/Edit.png.meta b/assets/static-res/shc/Edit.png.meta new file mode 100644 index 0000000..feecd3f --- /dev/null +++ b/assets/static-res/shc/Edit.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "72b571cf-ed2d-49d0-a308-245b65f8b44e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "72b571cf-ed2d-49d0-a308-245b65f8b44e@6c48a", + "displayName": "Edit", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "72b571cf-ed2d-49d0-a308-245b65f8b44e", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "72b571cf-ed2d-49d0-a308-245b65f8b44e@6c48a" + } +} diff --git a/assets/static-res/shc/cursor.png b/assets/static-res/shc/cursor.png new file mode 100644 index 0000000..2b8ba0a Binary files /dev/null and b/assets/static-res/shc/cursor.png differ diff --git a/assets/static-res/shc/cursor.png.meta b/assets/static-res/shc/cursor.png.meta new file mode 100644 index 0000000..37f04fc --- /dev/null +++ b/assets/static-res/shc/cursor.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6b70ee28-9038-4328-9849-de23c3f79edf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6b70ee28-9038-4328-9849-de23c3f79edf@6c48a", + "displayName": "cursor", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "6b70ee28-9038-4328-9849-de23c3f79edf", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6b70ee28-9038-4328-9849-de23c3f79edf@6c48a" + } +} diff --git a/assets/static-res/shc/myfont.fnt b/assets/static-res/shc/myfont.fnt new file mode 100644 index 0000000..501f834 --- /dev/null +++ b/assets/static-res/shc/myfont.fnt @@ -0,0 +1,10 @@ +info face="MicrosoftYaHei" size=45 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=6,6 +common lineHeight=59 base=48 scaleW=128 scaleH=128 pages=1 packed=0 +page id=0 file="myfont.png" +chars count=5 +char id=28216 x=6 y=6 width=46 height=45 xoffset=0 yoffset=9 xadvance=45 page=0 chnl=0 letter="游" +char id=22987 x=58 y=6 width=45 height=45 xoffset=1 yoffset=9 xadvance=45 page=0 chnl=0 letter="始" +char id=25103 x=6 y=57 width=45 height=44 xoffset=1 yoffset=10 xadvance=45 page=0 chnl=0 letter="戏" +char id=24320 x=57 y=57 width=45 height=42 xoffset=1 yoffset=12 xadvance=45 page=0 chnl=0 letter="开" +char id=32 x=108 y=57 width=0 height=0 xoffset=13 yoffset=68 xadvance=13 page=0 chnl=0 letter="space" +kernings count=0 diff --git a/assets/static-res/shc/myfont.fnt.meta b/assets/static-res/shc/myfont.fnt.meta new file mode 100644 index 0000000..79d1202 --- /dev/null +++ b/assets/static-res/shc/myfont.fnt.meta @@ -0,0 +1,77 @@ +{ + "ver": "1.0.6", + "importer": "bitmap-font", + "imported": true, + "uuid": "8beda371-f2d9-4723-a5dc-9c200f87e887", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "_fntConfig": { + "commonHeight": 59, + "fontSize": 45, + "atlasName": "myfont.png", + "fontDefDictionary": { + "32": { + "rect": { + "x": 108, + "y": 57, + "width": 0, + "height": 0 + }, + "xOffset": 13, + "yOffset": 68, + "xAdvance": 13 + }, + "22987": { + "rect": { + "x": 58, + "y": 6, + "width": 45, + "height": 45 + }, + "xOffset": 1, + "yOffset": 9, + "xAdvance": 45 + }, + "24320": { + "rect": { + "x": 57, + "y": 57, + "width": 45, + "height": 42 + }, + "xOffset": 1, + "yOffset": 12, + "xAdvance": 45 + }, + "25103": { + "rect": { + "x": 6, + "y": 57, + "width": 45, + "height": 44 + }, + "xOffset": 1, + "yOffset": 10, + "xAdvance": 45 + }, + "28216": { + "rect": { + "x": 6, + "y": 6, + "width": 46, + "height": 45 + }, + "xOffset": 0, + "yOffset": 9, + "xAdvance": 45 + } + }, + "kerningDict": {} + }, + "fontSize": 45, + "textureUuid": "7ef5533f-b424-4586-9d0a-b4e693c4e627" + } +} diff --git a/assets/static-res/shc/myfont.png b/assets/static-res/shc/myfont.png new file mode 100644 index 0000000..3aa5e85 Binary files /dev/null and b/assets/static-res/shc/myfont.png differ diff --git a/assets/static-res/shc/myfont.png.meta b/assets/static-res/shc/myfont.png.meta new file mode 100644 index 0000000..5f95c4e --- /dev/null +++ b/assets/static-res/shc/myfont.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7ef5533f-b424-4586-9d0a-b4e693c4e627", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7ef5533f-b424-4586-9d0a-b4e693c4e627@6c48a", + "displayName": "myfont", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7ef5533f-b424-4586-9d0a-b4e693c4e627", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7ef5533f-b424-4586-9d0a-b4e693c4e627@f9941", + "displayName": "myfont", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 10, + "trimX": 6, + "trimY": 7, + "width": 96, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -48, + -47, + 0, + 48, + -47, + 0, + -48, + 47, + 0, + 48, + 47, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 6, + 121, + 102, + 121, + 6, + 27, + 102, + 27 + ], + "nuv": [ + 0.046875, + 0.2109375, + 0.796875, + 0.2109375, + 0.046875, + 0.9453125, + 0.796875, + 0.9453125 + ], + "minPos": [ + -48, + -47, + 0 + ], + "maxPos": [ + 48, + 47, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7ef5533f-b424-4586-9d0a-b4e693c4e627@6c48a", + "atlasUuid": "", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7ef5533f-b424-4586-9d0a-b4e693c4e627@6c48a" + } +} diff --git a/assets/static-res/shc/myfont1.fnt b/assets/static-res/shc/myfont1.fnt new file mode 100644 index 0000000..cfbcc25 --- /dev/null +++ b/assets/static-res/shc/myfont1.fnt @@ -0,0 +1,23 @@ +info face="MicrosoftYaHei" size=27 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=4,4 +common lineHeight=36 base=29 scaleW=256 scaleH=128 pages=1 packed=0 +page id=0 file="myfont1.png" +chars count=18 +char id=29392 x=4 y=4 width=31 height=30 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="狐" +char id=28392 x=39 y=4 width=30 height=30 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="滨" +char id=31454 x=73 y=4 width=30 height=30 xoffset=0 yoffset=3 xadvance=29 page=0 chnl=0 letter="竞" +char id=28023 x=107 y=4 width=31 height=29 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="海" +char id=22987 x=142 y=4 width=31 height=29 xoffset=0 yoffset=5 xadvance=29 page=0 chnl=0 letter="始" +char id=26790 x=177 y=4 width=31 height=29 xoffset=0 yoffset=5 xadvance=29 page=0 chnl=0 letter="梦" +char id=25216 x=212 y=4 width=30 height=29 xoffset=0 yoffset=5 xadvance=29 page=0 chnl=0 letter="技" +char id=21407 x=4 y=38 width=30 height=29 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="原" +char id=34255 x=38 y=38 width=30 height=29 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="藏" +char id=24515 x=72 y=38 width=30 height=29 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="心" +char id=38215 x=106 y=38 width=29 height=29 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="镇" +char id=26449 x=139 y=38 width=29 height=29 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="村" +char id=24187 x=172 y=38 width=27 height=29 xoffset=1 yoffset=4 xadvance=29 page=0 chnl=0 letter="幻" +char id=20013 x=203 y=38 width=26 height=29 xoffset=2 yoffset=5 xadvance=29 page=0 chnl=0 letter="中" +char id=23707 x=4 y=71 width=26 height=29 xoffset=2 yoffset=4 xadvance=29 page=0 chnl=0 letter="岛" +char id=23453 x=34 y=71 width=29 height=28 xoffset=1 yoffset=4 xadvance=29 page=0 chnl=0 letter="宝" +char id=29432 x=67 y=71 width=31 height=27 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="狸" +char id=32 x=102 y=71 width=0 height=0 xoffset=8 yoffset=49 xadvance=10 page=0 chnl=0 letter="space" +kernings count=0 diff --git a/assets/static-res/shc/myfont1.fnt.meta b/assets/static-res/shc/myfont1.fnt.meta new file mode 100644 index 0000000..dd944b4 --- /dev/null +++ b/assets/static-res/shc/myfont1.fnt.meta @@ -0,0 +1,220 @@ +{ + "ver": "1.0.6", + "importer": "bitmap-font", + "imported": true, + "uuid": "320e78c5-93e2-4fb1-b05c-0b3e977b4837", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "_fntConfig": { + "commonHeight": 36, + "fontSize": 27, + "atlasName": "myfont1.png", + "fontDefDictionary": { + "32": { + "rect": { + "x": 102, + "y": 71, + "width": 0, + "height": 0 + }, + "xOffset": 8, + "yOffset": 49, + "xAdvance": 10 + }, + "20013": { + "rect": { + "x": 203, + "y": 38, + "width": 26, + "height": 29 + }, + "xOffset": 2, + "yOffset": 5, + "xAdvance": 29 + }, + "21407": { + "rect": { + "x": 4, + "y": 38, + "width": 30, + "height": 29 + }, + "xOffset": 0, + "yOffset": 6, + "xAdvance": 29 + }, + "22987": { + "rect": { + "x": 142, + "y": 4, + "width": 31, + "height": 29 + }, + "xOffset": 0, + "yOffset": 5, + "xAdvance": 29 + }, + "23453": { + "rect": { + "x": 34, + "y": 71, + "width": 29, + "height": 28 + }, + "xOffset": 1, + "yOffset": 4, + "xAdvance": 29 + }, + "23707": { + "rect": { + "x": 4, + "y": 71, + "width": 26, + "height": 29 + }, + "xOffset": 2, + "yOffset": 4, + "xAdvance": 29 + }, + "24187": { + "rect": { + "x": 172, + "y": 38, + "width": 27, + "height": 29 + }, + "xOffset": 1, + "yOffset": 4, + "xAdvance": 29 + }, + "24515": { + "rect": { + "x": 72, + "y": 38, + "width": 30, + "height": 29 + }, + "xOffset": 0, + "yOffset": 4, + "xAdvance": 29 + }, + "25216": { + "rect": { + "x": 212, + "y": 4, + "width": 30, + "height": 29 + }, + "xOffset": 0, + "yOffset": 5, + "xAdvance": 29 + }, + "26449": { + "rect": { + "x": 139, + "y": 38, + "width": 29, + "height": 29 + }, + "xOffset": 0, + "yOffset": 4, + "xAdvance": 29 + }, + "26790": { + "rect": { + "x": 177, + "y": 4, + "width": 31, + "height": 29 + }, + "xOffset": 0, + "yOffset": 5, + "xAdvance": 29 + }, + "28023": { + "rect": { + "x": 107, + "y": 4, + "width": 31, + "height": 29 + }, + "xOffset": 0, + "yOffset": 4, + "xAdvance": 29 + }, + "28392": { + "rect": { + "x": 39, + "y": 4, + "width": 30, + "height": 30 + }, + "xOffset": 0, + "yOffset": 4, + "xAdvance": 29 + }, + "29392": { + "rect": { + "x": 4, + "y": 4, + "width": 31, + "height": 30 + }, + "xOffset": 0, + "yOffset": 4, + "xAdvance": 29 + }, + "29432": { + "rect": { + "x": 67, + "y": 71, + "width": 31, + "height": 27 + }, + "xOffset": 0, + "yOffset": 6, + "xAdvance": 29 + }, + "31454": { + "rect": { + "x": 73, + "y": 4, + "width": 30, + "height": 30 + }, + "xOffset": 0, + "yOffset": 3, + "xAdvance": 29 + }, + "34255": { + "rect": { + "x": 38, + "y": 38, + "width": 30, + "height": 29 + }, + "xOffset": 0, + "yOffset": 6, + "xAdvance": 29 + }, + "38215": { + "rect": { + "x": 106, + "y": 38, + "width": 29, + "height": 29 + }, + "xOffset": 0, + "yOffset": 6, + "xAdvance": 29 + } + }, + "kerningDict": {} + }, + "fontSize": 27, + "textureUuid": "e5b05733-bb89-4f80-a34b-4debb89cca08" + } +} diff --git a/assets/static-res/shc/myfont1.png b/assets/static-res/shc/myfont1.png new file mode 100644 index 0000000..5389cb4 Binary files /dev/null and b/assets/static-res/shc/myfont1.png differ diff --git a/assets/static-res/shc/myfont1.png.meta b/assets/static-res/shc/myfont1.png.meta new file mode 100644 index 0000000..d42e6b1 --- /dev/null +++ b/assets/static-res/shc/myfont1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e5b05733-bb89-4f80-a34b-4debb89cca08", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e5b05733-bb89-4f80-a34b-4debb89cca08@6c48a", + "displayName": "myfont1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e5b05733-bb89-4f80-a34b-4debb89cca08", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e5b05733-bb89-4f80-a34b-4debb89cca08@f9941", + "displayName": "myfont1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -5.5, + "offsetY": 11.5, + "trimX": 4, + "trimY": 5, + "width": 237, + "height": 95, + "rawWidth": 256, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -118.5, + -47.5, + 0, + 118.5, + -47.5, + 0, + -118.5, + 47.5, + 0, + 118.5, + 47.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 4, + 123, + 241, + 123, + 4, + 28, + 241, + 28 + ], + "nuv": [ + 0.015625, + 0.21875, + 0.94140625, + 0.21875, + 0.015625, + 0.9609375, + 0.94140625, + 0.9609375 + ], + "minPos": [ + -118.5, + -47.5, + 0 + ], + "maxPos": [ + 118.5, + 47.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e5b05733-bb89-4f80-a34b-4debb89cca08@6c48a", + "atlasUuid": "", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e5b05733-bb89-4f80-a34b-4debb89cca08@6c48a" + } +} diff --git a/assets/static-res/shc/myfont2.fnt b/assets/static-res/shc/myfont2.fnt new file mode 100644 index 0000000..8d0ed88 --- /dev/null +++ b/assets/static-res/shc/myfont2.fnt @@ -0,0 +1,19 @@ +info face="Avenir-Medium" size=22 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=2,2 +common lineHeight=31 base=22 scaleW=128 scaleH=64 pages=1 packed=0 +page id=0 file="myfont2.png" +chars count=13 +char id=51 x=2 y=2 width=15 height=20 xoffset=1 yoffset=3 xadvance=14 page=0 chnl=0 letter="3" +char id=56 x=19 y=2 width=14 height=20 xoffset=1 yoffset=3 xadvance=14 page=0 chnl=0 letter="8" +char id=48 x=35 y=2 width=14 height=20 xoffset=1 yoffset=3 xadvance=14 page=0 chnl=0 letter="0" +char id=88 x=51 y=2 width=19 height=19 xoffset=-0 yoffset=4 xadvance=16 page=0 chnl=0 letter="X" +char id=52 x=72 y=2 width=13 height=19 xoffset=1 yoffset=4 xadvance=14 page=0 chnl=0 letter="4" +char id=55 x=87 y=2 width=12 height=19 xoffset=1 yoffset=4 xadvance=14 page=0 chnl=0 letter="7" +char id=49 x=101 y=2 width=11 height=19 xoffset=2 yoffset=4 xadvance=14 page=0 chnl=0 letter="1" +char id=53 x=2 y=24 width=15 height=18 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter="5" +char id=50 x=19 y=24 width=14 height=18 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter="2" +char id=54 x=35 y=24 width=14 height=18 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter="6" +char id=57 x=51 y=24 width=14 height=18 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter="9" +char id=120 x=67 y=24 width=16 height=14 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="x" +char id=32 x=85 y=24 width=0 height=0 xoffset=6 yoffset=42 xadvance=8 page=0 chnl=0 letter="space" +kernings count=1 +kerning first=55 second=32 amount=-3 diff --git a/assets/static-res/shc/myfont2.fnt.meta b/assets/static-res/shc/myfont2.fnt.meta new file mode 100644 index 0000000..541b361 --- /dev/null +++ b/assets/static-res/shc/myfont2.fnt.meta @@ -0,0 +1,167 @@ +{ + "ver": "1.0.6", + "importer": "bitmap-font", + "imported": true, + "uuid": "616d1379-b90e-4698-8115-eff5ae76e328", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "_fntConfig": { + "commonHeight": 31, + "fontSize": 22, + "atlasName": "myfont2.png", + "fontDefDictionary": { + "32": { + "rect": { + "x": 85, + "y": 24, + "width": 0, + "height": 0 + }, + "xOffset": 6, + "yOffset": 42, + "xAdvance": 8 + }, + "48": { + "rect": { + "x": 35, + "y": 2, + "width": 14, + "height": 20 + }, + "xOffset": 1, + "yOffset": 3, + "xAdvance": 14 + }, + "49": { + "rect": { + "x": 101, + "y": 2, + "width": 11, + "height": 19 + }, + "xOffset": 2, + "yOffset": 4, + "xAdvance": 14 + }, + "50": { + "rect": { + "x": 19, + "y": 24, + "width": 14, + "height": 18 + }, + "xOffset": 1, + "yOffset": 5, + "xAdvance": 14 + }, + "51": { + "rect": { + "x": 2, + "y": 2, + "width": 15, + "height": 20 + }, + "xOffset": 1, + "yOffset": 3, + "xAdvance": 14 + }, + "52": { + "rect": { + "x": 72, + "y": 2, + "width": 13, + "height": 19 + }, + "xOffset": 1, + "yOffset": 4, + "xAdvance": 14 + }, + "53": { + "rect": { + "x": 2, + "y": 24, + "width": 15, + "height": 18 + }, + "xOffset": 1, + "yOffset": 5, + "xAdvance": 14 + }, + "54": { + "rect": { + "x": 35, + "y": 24, + "width": 14, + "height": 18 + }, + "xOffset": 1, + "yOffset": 5, + "xAdvance": 14 + }, + "55": { + "rect": { + "x": 87, + "y": 2, + "width": 12, + "height": 19 + }, + "xOffset": 1, + "yOffset": 4, + "xAdvance": 14 + }, + "56": { + "rect": { + "x": 19, + "y": 2, + "width": 14, + "height": 20 + }, + "xOffset": 1, + "yOffset": 3, + "xAdvance": 14 + }, + "57": { + "rect": { + "x": 51, + "y": 24, + "width": 14, + "height": 18 + }, + "xOffset": 1, + "yOffset": 5, + "xAdvance": 14 + }, + "88": { + "rect": { + "x": 51, + "y": 2, + "width": 19, + "height": 19 + }, + "xOffset": 0, + "yOffset": 4, + "xAdvance": 16 + }, + "120": { + "rect": { + "x": 67, + "y": 24, + "width": 16, + "height": 14 + }, + "xOffset": 0, + "yOffset": 9, + "xAdvance": 13 + } + }, + "kerningDict": { + "3604512": -3 + } + }, + "fontSize": 22, + "textureUuid": "16236a57-b45e-48ee-9aad-dd8a79a21cb8" + } +} diff --git a/assets/static-res/shc/myfont2.png b/assets/static-res/shc/myfont2.png new file mode 100644 index 0000000..99d5c57 Binary files /dev/null and b/assets/static-res/shc/myfont2.png differ diff --git a/assets/static-res/shc/myfont2.png.meta b/assets/static-res/shc/myfont2.png.meta new file mode 100644 index 0000000..fcf9a73 --- /dev/null +++ b/assets/static-res/shc/myfont2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "16236a57-b45e-48ee-9aad-dd8a79a21cb8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "16236a57-b45e-48ee-9aad-dd8a79a21cb8@6c48a", + "displayName": "myfont2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "16236a57-b45e-48ee-9aad-dd8a79a21cb8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "16236a57-b45e-48ee-9aad-dd8a79a21cb8@f9941", + "displayName": "myfont2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -7.5, + "offsetY": 9.5, + "trimX": 2, + "trimY": 3, + "width": 109, + "height": 39, + "rawWidth": 128, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -54.5, + -19.5, + 0, + 54.5, + -19.5, + 0, + -54.5, + 19.5, + 0, + 54.5, + 19.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 2, + 61, + 111, + 61, + 2, + 22, + 111, + 22 + ], + "nuv": [ + 0.015625, + 0.34375, + 0.8671875, + 0.34375, + 0.015625, + 0.953125, + 0.8671875, + 0.953125 + ], + "minPos": [ + -54.5, + -19.5, + 0 + ], + "maxPos": [ + 54.5, + 19.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "16236a57-b45e-48ee-9aad-dd8a79a21cb8@6c48a", + "atlasUuid": "", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "16236a57-b45e-48ee-9aad-dd8a79a21cb8@6c48a" + } +} diff --git a/assets/static-res/shc/newPic1.plist b/assets/static-res/shc/newPic1.plist new file mode 100644 index 0000000..71643a2 --- /dev/null +++ b/assets/static-res/shc/newPic1.plist @@ -0,0 +1,61 @@ + + + + + frames + + awardForAndriod.png + + frame + {{78,720},{110,146}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{110,146}} + sourceSize + {110,146} + + makeConfirm.png + + frame + {{2,720},{228,74}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{228,74}} + sourceSize + {228,74} + + xianshiBuy.png + + frame + {{2,2},{635,716}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{635,716}} + sourceSize + {635,716} + + + metadata + + format + 2 + realTextureFileName + newPic1.png + size + {1024,1024} + smartupdate + $TexturePacker:SmartUpdate:6ed4e7e3bdb7a4b975eafd344aff0128:1/1$ + textureFileName + newPic1.png + + + diff --git a/assets/static-res/shc/newPic1.plist.meta b/assets/static-res/shc/newPic1.plist.meta new file mode 100644 index 0000000..503b546 --- /dev/null +++ b/assets/static-res/shc/newPic1.plist.meta @@ -0,0 +1,155 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce", + "files": [ + ".json" + ], + "subMetas": { + "c52e4": { + "importer": "sprite-frame", + "uuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce@c52e4", + "displayName": "", + "id": "c52e4", + "name": "awardForAndriod", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 78, + "trimY": 720, + "width": 110, + "height": 146, + "rawWidth": 110, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f11c6594-e1c0-4818-8785-0b60fc2c603c@6c48a", + "atlasUuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "82e17": { + "importer": "sprite-frame", + "uuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce@82e17", + "displayName": "", + "id": "82e17", + "name": "makeConfirm", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 720, + "width": 228, + "height": 74, + "rawWidth": 228, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f11c6594-e1c0-4818-8785-0b60fc2c603c@6c48a", + "atlasUuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c3227": { + "importer": "sprite-frame", + "uuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce@c3227", + "displayName": "", + "id": "c3227", + "name": "xianshiBuy", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 635, + "height": 716, + "rawWidth": 635, + "rawHeight": 716, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f11c6594-e1c0-4818-8785-0b60fc2c603c@6c48a", + "atlasUuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "newPic1.png", + "format": 2, + "uuid": "38bfa340-cfd5-4e2b-831b-adae1701b5ce", + "textureUuid": "f11c6594-e1c0-4818-8785-0b60fc2c603c@6c48a" + } +} diff --git a/assets/static-res/shc/newPic1.png b/assets/static-res/shc/newPic1.png new file mode 100644 index 0000000..230a036 Binary files /dev/null and b/assets/static-res/shc/newPic1.png differ diff --git a/assets/static-res/shc/newPic1.png.meta b/assets/static-res/shc/newPic1.png.meta new file mode 100644 index 0000000..9f2fddb --- /dev/null +++ b/assets/static-res/shc/newPic1.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f11c6594-e1c0-4818-8785-0b60fc2c603c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f11c6594-e1c0-4818-8785-0b60fc2c603c@6c48a", + "displayName": "newPic1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "f11c6594-e1c0-4818-8785-0b60fc2c603c", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f11c6594-e1c0-4818-8785-0b60fc2c603c@6c48a" + } +} diff --git a/assets/static-res/shc/objecta.plist b/assets/static-res/shc/objecta.plist new file mode 100644 index 0000000..8349921 --- /dev/null +++ b/assets/static-res/shc/objecta.plist @@ -0,0 +1,1387 @@ + + + + + frames + + 1001.png + + frame + {{704,656},{80,65}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{80,65}} + sourceSize + {80,65} + + 1002.png + + frame + {{855,508},{90,72}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{90,72}} + sourceSize + {90,72} + + 1003.png + + frame + {{763,500},{90,74}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{90,74}} + sourceSize + {90,74} + + 1004.png + + frame + {{214,2},{97,114}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{97,114}} + sourceSize + {97,114} + + 1005.png + + frame + {{209,124},{98,115}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{98,115}} + sourceSize + {98,115} + + 1006.png + + frame + {{907,704},{78,64}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{78,64}} + sourceSize + {78,64} + + 1007.png + + frame + {{958,224},{78,64}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{78,64}} + sourceSize + {78,64} + + 1008.png + + frame + {{747,2},{96,74}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{96,74}} + sourceSize + {96,74} + + 1009.png + + frame + {{739,100},{96,74}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{96,74}} + sourceSize + {96,74} + + 1010.png + + frame + {{819,653},{86,85}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{86,85}} + sourceSize + {86,85} + + 1011.png + + frame + {{908,617},{86,85}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{86,85}} + sourceSize + {86,85} + + 1012.png + + frame + {{364,349},{104,101}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,101}} + sourceSize + {104,101} + + 1013.png + + frame + {{313,2},{104,101}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,101}} + sourceSize + {104,101} + + 1014.png + + frame + {{146,757},{104,108}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,108}} + sourceSize + {104,108} + + 1015.png + + frame + {{281,476},{104,107}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,107}} + sourceSize + {104,107} + + 1016.png + + frame + {{94,267},{104,121}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,121}} + sourceSize + {104,121} + + 1017.png + + frame + {{108,2},{104,120}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,120}} + sourceSize + {104,120} + + 1018.png + + frame + {{2,2},{104,131}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,131}} + sourceSize + {104,131} + + 1019.png + + frame + {{2,135},{104,130}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,130}} + sourceSize + {104,130} + + 2001.png + + frame + {{897,70},{80,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{80,95}} + sourceSize + {80,95} + + 2002.png + + frame + {{146,390},{80,118}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{80,118}} + sourceSize + {80,118} + + 2004.png + + frame + {{2,267},{90,129}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{90,129}} + sourceSize + {90,129} + + 3001.png + + frame + {{897,2},{96,66}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{96,66}} + sourceSize + {96,66} + + 3002.png + + frame + {{367,225},{104,88}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{104,88}} + sourceSize + {104,88} + + 4001.png + + frame + {{146,643},{66,112}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,112}} + sourceSize + {66,112} + + 4002.png + + frame + {{200,245},{97,116}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{97,116}} + sourceSize + {97,116} + + 5001.png + + frame + {{214,623},{66,108}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,108}} + sourceSize + {66,108} + + 5002.png + + frame + {{397,108},{87,103}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{87,103}} + sourceSize + {87,103} + + 6001.png + + frame + {{326,688},{86,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{86,100}} + sourceSize + {86,100} + + 7001.png + + frame + {{819,582},{87,69}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{87,69}} + sourceSize + {87,69} + + 7002.png + + frame + {{416,2},{103,74}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{103,74}} + sourceSize + {103,74} + + 8001.png + + frame + {{955,448},{92,66}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{92,66}} + sourceSize + {92,66} + + FlayFoxCreate1.png + + frame + {{74,522},{99,119}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{99,119}} + sourceSize + {99,119} + + FlayFoxCreate2.png + + frame + {{108,124},{99,119}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{99,119}} + sourceSize + {99,119} + + FlayFoxCreate3.png + + frame + {{309,118},{86,105}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{86,105}} + sourceSize + {86,105} + + FlayFoxCreate4.png + + frame + {{729,576},{78,88}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{78,88}} + sourceSize + {78,88} + + FlayFoxCreate5.png + + frame + {{947,542},{73,75}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{73,75}} + sourceSize + {73,75} + + FlayFoxCreate6.png + + frame + {{407,790},{74,75}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{74,75}} + sourceSize + {74,75} + + FlayFoxCreate7.png + + frame + {{326,790},{79,75}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{79,75}} + sourceSize + {79,75} + + FlayFoxCreate8.png + + frame + {{243,476},{108,36}} + offset + {0,24} + rotated + + sourceColorRect + {{0,0},{108,36}} + sourceSize + {108,84} + + FlyFox1.png + + frame + {{558,106},{99,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{99,95}} + sourceSize + {99,95} + + FlyFox2.png + + frame + {{529,212},{99,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{99,95}} + sourceSize + {99,95} + + FlyFox3.png + + frame + {{467,318},{99,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{99,95}} + sourceSize + {99,95} + + FlyFox4.png + + frame + {{243,867},{101,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{101,95}} + sourceSize + {101,95} + + FlyFox5.png + + frame + {{146,867},{102,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{102,95}} + sourceSize + {102,95} + + FlyFox6.png + + frame + {{492,2},{102,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{102,95}} + sourceSize + {102,95} + + FlyFox7.png + + frame + {{564,313},{97,95}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{97,95}} + sourceSize + {97,95} + + fox1.png + + frame + {{299,241},{66,106}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,106}} + sourceSize + {66,106} + + fox2.png + + frame + {{282,585},{69,101}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{69,101}} + sourceSize + {69,101} + + fox3.png + + frame + {{486,107},{70,103}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,103}} + sourceSize + {70,103} + + fox4.png + + frame + {{296,363},{66,106}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,106}} + sourceSize + {66,106} + + fox5.png + + frame + {{252,733},{72,101}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{72,101}} + sourceSize + {72,101} + + fox6.png + + frame + {{457,213},{70,103}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,103}} + sourceSize + {70,103} + + foxA1.png + + frame + {{228,363},{66,111}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,111}} + sourceSize + {66,111} + + foxA2.png + + frame + {{74,873},{70,113}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,113}} + sourceSize + {70,113} + + foxA3.png + + frame + {{74,758},{70,113}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,113}} + sourceSize + {70,113} + + foxA4.png + + frame + {{74,643},{70,113}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,113}} + sourceSize + {70,113} + + foxA5.png + + frame + {{74,873},{70,113}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,113}} + sourceSize + {70,113} + + foxA6.png + + frame + {{74,758},{70,113}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,113}} + sourceSize + {70,113} + + foxA7.png + + frame + {{74,643},{70,113}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,113}} + sourceSize + {70,113} + + foxA8.png + + frame + {{175,510},{66,111}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,111}} + sourceSize + {66,111} + + left1.png + + frame + {{533,419},{70,98}} + offset + {-1,-1} + rotated + + sourceColorRect + {{14,2},{70,98}} + sourceSize + {100,100} + + left1A.png + + frame + {{558,657},{70,98}} + offset + {-1,-1} + rotated + + sourceColorRect + {{14,2},{70,98}} + sourceSize + {100,100} + + left2.png + + frame + {{823,2},{72,96}} + offset + {0,-2} + rotated + + sourceColorRect + {{14,4},{72,96}} + sourceSize + {100,100} + + left2A.png + + frame + {{815,100},{72,96}} + offset + {0,-2} + rotated + + sourceColorRect + {{14,4},{72,96}} + sourceSize + {100,100} + + left3.png + + frame + {{387,455},{72,100}} + offset + {0,0} + rotated + + sourceColorRect + {{14,0},{72,100}} + sourceSize + {100,100} + + left3A.png + + frame + {{353,585},{72,100}} + offset + {0,0} + rotated + + sourceColorRect + {{14,0},{72,100}} + sourceSize + {100,100} + + left4.png + + frame + {{788,198},{72,96}} + offset + {-2,-2} + rotated + + sourceColorRect + {{12,4},{72,96}} + sourceSize + {100,100} + + left4A.png + + frame + {{745,298},{72,96}} + offset + {-2,-2} + rotated + + sourceColorRect + {{12,4},{72,96}} + sourceSize + {100,100} + + left5.png + + frame + {{661,305},{82,96}} + offset + {6,-2} + rotated + + sourceColorRect + {{15,4},{82,96}} + sourceSize + {100,100} + + left5A.png + + frame + {{605,412},{82,96}} + offset + {6,-2} + rotated + + sourceColorRect + {{15,4},{82,96}} + sourceSize + {100,100} + + left6.png + + frame + {{915,376},{70,94}} + offset + {-1,-3} + rotated + + sourceColorRect + {{14,6},{70,94}} + sourceSize + {100,100} + + left6A.png + + frame + {{819,368},{70,94}} + offset + {-1,-3} + rotated + + sourceColorRect + {{14,6},{70,94}} + sourceSize + {100,100} + + left7.png + + frame + {{74,398},{70,122}} + offset + {0,3} + rotated + + sourceColorRect + {{15,11},{70,122}} + sourceSize + {100,150} + + left7A.png + + frame + {{2,894},{70,122}} + offset + {0,3} + rotated + + sourceColorRect + {{15,11},{70,122}} + sourceSize + {100,150} + + leftdialog.png + + frame + {{859,448},{94,58}} + offset + {-1,0} + rotated + + sourceColorRect + {{2,21},{94,58}} + sourceSize + {100,100} + + middle1.png + + frame + {{412,867},{72,98}} + offset + {-1,-1} + rotated + + sourceColorRect + {{13,2},{72,98}} + sourceSize + {100,100} + + middle1A.png + + frame + {{589,2},{72,98}} + offset + {-1,-1} + rotated + + sourceColorRect + {{13,2},{72,98}} + sourceSize + {100,100} + + middle2.png + + frame + {{710,200},{76,96}} + offset + {0,-2} + rotated + + sourceColorRect + {{12,4},{76,96}} + sourceSize + {100,100} + + middle2A.png + + frame + {{483,789},{76,96}} + offset + {0,-2} + rotated + + sourceColorRect + {{12,4},{76,96}} + sourceSize + {100,100} + + middle3.png + + frame + {{461,455},{70,100}} + offset + {-1,0} + rotated + + sourceColorRect + {{14,0},{70,100}} + sourceSize + {100,100} + + middle3A.png + + frame + {{427,557},{70,100}} + offset + {-1,0} + rotated + + sourceColorRect + {{14,0},{70,100}} + sourceSize + {100,100} + + middle4.png + + frame + {{689,403},{72,96}} + offset + {-2,-2} + rotated + + sourceColorRect + {{12,4},{72,96}} + sourceSize + {100,100} + + middle4A.png + + frame + {{655,510},{72,96}} + offset + {-2,-2} + rotated + + sourceColorRect + {{12,4},{72,96}} + sourceSize + {100,100} + + middle5.png + + frame + {{571,519},{82,96}} + offset + {6,-2} + rotated + + sourceColorRect + {{15,4},{82,96}} + sourceSize + {100,100} + + middle5A.png + + frame + {{663,2},{82,96}} + offset + {6,-2} + rotated + + sourceColorRect + {{15,4},{82,96}} + sourceSize + {100,100} + + middle6.png + + frame + {{915,304},{70,94}} + offset + {-1,-3} + rotated + + sourceColorRect + {{14,6},{70,94}} + sourceSize + {100,100} + + middle6A.png + + frame + {{819,296},{70,94}} + offset + {-1,-3} + rotated + + sourceColorRect + {{14,6},{70,94}} + sourceSize + {100,100} + + middle7.png + + frame + {{2,770},{70,122}} + offset + {0,3} + rotated + + sourceColorRect + {{15,11},{70,122}} + sourceSize + {100,150} + + middle7A.png + + frame + {{2,646},{70,122}} + offset + {0,3} + rotated + + sourceColorRect + {{15,11},{70,122}} + sourceSize + {100,150} + + right1.png + + frame + {{499,557},{70,98}} + offset + {-1,-1} + rotated + + sourceColorRect + {{14,2},{70,98}} + sourceSize + {100,100} + + right1A.png + + frame + {{486,659},{70,98}} + offset + {-1,-1} + rotated + + sourceColorRect + {{14,2},{70,98}} + sourceSize + {100,100} + + right2.png + + frame + {{630,617},{72,96}} + offset + {-1,-2} + rotated + + sourceColorRect + {{13,4},{72,96}} + sourceSize + {100,100} + + right2A.png + + frame + {{581,757},{72,96}} + offset + {-1,-2} + rotated + + sourceColorRect + {{13,4},{72,96}} + sourceSize + {100,100} + + right3.png + + frame + {{414,687},{70,100}} + offset + {-1,0} + rotated + + sourceColorRect + {{14,0},{70,100}} + sourceSize + {100,100} + + right3A.png + + frame + {{340,867},{70,100}} + offset + {-1,0} + rotated + + sourceColorRect + {{14,0},{70,100}} + sourceSize + {100,100} + + right4.png + + frame + {{560,867},{72,96}} + offset + {-2,-2} + rotated + + sourceColorRect + {{12,4},{72,96}} + sourceSize + {100,100} + + right4A.png + + frame + {{486,867},{72,96}} + offset + {-2,-2} + rotated + + sourceColorRect + {{12,4},{72,96}} + sourceSize + {100,100} + + right5.png + + frame + {{655,102},{82,96}} + offset + {6,-2} + rotated + + sourceColorRect + {{15,4},{82,96}} + sourceSize + {100,100} + + right5A.png + + frame + {{626,207},{82,96}} + offset + {6,-2} + rotated + + sourceColorRect + {{15,4},{82,96}} + sourceSize + {100,100} + + right6.png + + frame + {{862,224},{70,94}} + offset + {-1,-3} + rotated + + sourceColorRect + {{14,6},{70,94}} + sourceSize + {100,100} + + right6A.png + + frame + {{889,152},{70,94}} + offset + {-1,-3} + rotated + + sourceColorRect + {{14,6},{70,94}} + sourceSize + {100,100} + + right7.png + + frame + {{2,522},{70,122}} + offset + {0,3} + rotated + + sourceColorRect + {{15,11},{70,122}} + sourceSize + {100,150} + + right7A.png + + frame + {{2,398},{70,122}} + offset + {0,3} + rotated + + sourceColorRect + {{15,11},{70,122}} + sourceSize + {100,150} + + rightdialog.png + + frame + {{763,440},{94,58}} + offset + {1,0} + rotated + + sourceColorRect + {{4,21},{94,58}} + sourceSize + {100,100} + + + metadata + + format + 2 + realTextureFileName + objecta.png + size + {1024,1024} + smartupdate + $TexturePacker:SmartUpdate:4878a8e5dd4ad2644628150d399d84ce:1/1$ + textureFileName + objecta.png + + + diff --git a/assets/static-res/shc/objecta.plist.meta b/assets/static-res/shc/objecta.plist.meta new file mode 100644 index 0000000..59a78ff --- /dev/null +++ b/assets/static-res/shc/objecta.plist.meta @@ -0,0 +1,4847 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "files": [ + ".json" + ], + "subMetas": { + "10232": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@10232", + "displayName": "", + "id": "10232", + "name": "7002", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 416, + "trimY": 2, + "width": 103, + "height": 74, + "rawWidth": 103, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "17447": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@17447", + "displayName": "", + "id": "17447", + "name": "right3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 414, + "trimY": 687, + "width": 70, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "27921": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@27921", + "displayName": "", + "id": "27921", + "name": "1005", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 209, + "trimY": 124, + "width": 98, + "height": 115, + "rawWidth": 98, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "48531": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@48531", + "displayName": "", + "id": "48531", + "name": "fox4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 296, + "trimY": 363, + "width": 66, + "height": 106, + "rawWidth": 66, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "49343": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@49343", + "displayName": "", + "id": "49343", + "name": "2002", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 146, + "trimY": 390, + "width": 80, + "height": 118, + "rawWidth": 80, + "rawHeight": 118, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "61303": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@61303", + "displayName": "", + "id": "61303", + "name": "middle5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 6, + "offsetY": -2, + "trimX": 571, + "trimY": 519, + "width": 82, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "71384": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@71384", + "displayName": "", + "id": "71384", + "name": "left2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -2, + "trimX": 823, + "trimY": 2, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "94586": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@94586", + "displayName": "", + "id": "94586", + "name": "1006", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 907, + "trimY": 704, + "width": 78, + "height": 64, + "rawWidth": 78, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b3f5a": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@b3f5a", + "displayName": "", + "id": "b3f5a", + "name": "1001", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 704, + "trimY": 656, + "width": 80, + "height": 65, + "rawWidth": 80, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f8120": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f8120", + "displayName": "", + "id": "f8120", + "name": "1002", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 855, + "trimY": 508, + "width": 90, + "height": 72, + "rawWidth": 90, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a59f6": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@a59f6", + "displayName": "", + "id": "a59f6", + "name": "1003", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 763, + "trimY": 500, + "width": 90, + "height": 74, + "rawWidth": 90, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f948a": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f948a", + "displayName": "", + "id": "f948a", + "name": "1004", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 214, + "trimY": 2, + "width": 97, + "height": 114, + "rawWidth": 97, + "rawHeight": 114, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ddb7d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@ddb7d", + "displayName": "", + "id": "ddb7d", + "name": "1007", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 958, + "trimY": 224, + "width": 78, + "height": 64, + "rawWidth": 78, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "15e2d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@15e2d", + "displayName": "", + "id": "15e2d", + "name": "1008", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 747, + "trimY": 2, + "width": 96, + "height": 74, + "rawWidth": 96, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3102d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@3102d", + "displayName": "", + "id": "3102d", + "name": "1009", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 739, + "trimY": 100, + "width": 96, + "height": 74, + "rawWidth": 96, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "141db": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@141db", + "displayName": "", + "id": "141db", + "name": "1010", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 819, + "trimY": 653, + "width": 86, + "height": 85, + "rawWidth": 86, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "750c7": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@750c7", + "displayName": "", + "id": "750c7", + "name": "1011", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 908, + "trimY": 617, + "width": 86, + "height": 85, + "rawWidth": 86, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f58a6": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f58a6", + "displayName": "", + "id": "f58a6", + "name": "1012", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 364, + "trimY": 349, + "width": 104, + "height": 101, + "rawWidth": 104, + "rawHeight": 101, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "639f9": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@639f9", + "displayName": "", + "id": "639f9", + "name": "1013", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 313, + "trimY": 2, + "width": 104, + "height": 101, + "rawWidth": 104, + "rawHeight": 101, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "769ee": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@769ee", + "displayName": "", + "id": "769ee", + "name": "1014", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 146, + "trimY": 757, + "width": 104, + "height": 108, + "rawWidth": 104, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2c194": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@2c194", + "displayName": "", + "id": "2c194", + "name": "1015", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 281, + "trimY": 476, + "width": 104, + "height": 107, + "rawWidth": 104, + "rawHeight": 107, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0225d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@0225d", + "displayName": "", + "id": "0225d", + "name": "1016", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 94, + "trimY": 267, + "width": 104, + "height": 121, + "rawWidth": 104, + "rawHeight": 121, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5dd64": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@5dd64", + "displayName": "", + "id": "5dd64", + "name": "1017", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 108, + "trimY": 2, + "width": 104, + "height": 120, + "rawWidth": 104, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e3bed": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@e3bed", + "displayName": "", + "id": "e3bed", + "name": "1018", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 104, + "height": 131, + "rawWidth": 104, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "04ed9": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@04ed9", + "displayName": "", + "id": "04ed9", + "name": "1019", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 135, + "width": 104, + "height": 130, + "rawWidth": 104, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d37cb": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@d37cb", + "displayName": "", + "id": "d37cb", + "name": "2001", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 897, + "trimY": 70, + "width": 80, + "height": 95, + "rawWidth": 80, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b217f": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@b217f", + "displayName": "", + "id": "b217f", + "name": "2004", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 267, + "width": 90, + "height": 129, + "rawWidth": 90, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9585c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@9585c", + "displayName": "", + "id": "9585c", + "name": "3001", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 897, + "trimY": 2, + "width": 96, + "height": 66, + "rawWidth": 96, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d17da": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@d17da", + "displayName": "", + "id": "d17da", + "name": "3002", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 225, + "width": 104, + "height": 88, + "rawWidth": 104, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f0a96": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f0a96", + "displayName": "", + "id": "f0a96", + "name": "4001", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 146, + "trimY": 643, + "width": 66, + "height": 112, + "rawWidth": 66, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2d1d8": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@2d1d8", + "displayName": "", + "id": "2d1d8", + "name": "4002", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 200, + "trimY": 245, + "width": 97, + "height": 116, + "rawWidth": 97, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0c62c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@0c62c", + "displayName": "", + "id": "0c62c", + "name": "5001", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 214, + "trimY": 623, + "width": 66, + "height": 108, + "rawWidth": 66, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4b971": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@4b971", + "displayName": "", + "id": "4b971", + "name": "5002", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 397, + "trimY": 108, + "width": 87, + "height": 103, + "rawWidth": 87, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ec0a2": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@ec0a2", + "displayName": "", + "id": "ec0a2", + "name": "6001", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 326, + "trimY": 688, + "width": 86, + "height": 100, + "rawWidth": 86, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5e616": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@5e616", + "displayName": "", + "id": "5e616", + "name": "7001", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 819, + "trimY": 582, + "width": 87, + "height": 69, + "rawWidth": 87, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b60ca": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@b60ca", + "displayName": "", + "id": "b60ca", + "name": "8001", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 955, + "trimY": 448, + "width": 92, + "height": 66, + "rawWidth": 92, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3caa4": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@3caa4", + "displayName": "", + "id": "3caa4", + "name": "FlayFoxCreate1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 522, + "width": 99, + "height": 119, + "rawWidth": 99, + "rawHeight": 119, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5e86c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@5e86c", + "displayName": "", + "id": "5e86c", + "name": "FlayFoxCreate2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 108, + "trimY": 124, + "width": 99, + "height": 119, + "rawWidth": 99, + "rawHeight": 119, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f83ee": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f83ee", + "displayName": "", + "id": "f83ee", + "name": "FlayFoxCreate3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 309, + "trimY": 118, + "width": 86, + "height": 105, + "rawWidth": 86, + "rawHeight": 105, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "044b4": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@044b4", + "displayName": "", + "id": "044b4", + "name": "FlayFoxCreate4", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 729, + "trimY": 576, + "width": 78, + "height": 88, + "rawWidth": 78, + "rawHeight": 88, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "495a8": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@495a8", + "displayName": "", + "id": "495a8", + "name": "FlayFoxCreate5", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 947, + "trimY": 542, + "width": 73, + "height": 75, + "rawWidth": 73, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ac178": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@ac178", + "displayName": "", + "id": "ac178", + "name": "FlayFoxCreate6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 407, + "trimY": 790, + "width": 74, + "height": 75, + "rawWidth": 74, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cd5c0": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@cd5c0", + "displayName": "", + "id": "cd5c0", + "name": "FlayFoxCreate7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 326, + "trimY": 790, + "width": 79, + "height": 75, + "rawWidth": 79, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9acdb": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@9acdb", + "displayName": "", + "id": "9acdb", + "name": "FlayFoxCreate8", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 24, + "trimX": 243, + "trimY": 476, + "width": 108, + "height": 36, + "rawWidth": 108, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9fb5c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@9fb5c", + "displayName": "", + "id": "9fb5c", + "name": "FlyFox1", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 558, + "trimY": 106, + "width": 99, + "height": 95, + "rawWidth": 99, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "862be": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@862be", + "displayName": "", + "id": "862be", + "name": "FlyFox2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 529, + "trimY": 212, + "width": 99, + "height": 95, + "rawWidth": 99, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9ac02": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@9ac02", + "displayName": "", + "id": "9ac02", + "name": "FlyFox3", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 467, + "trimY": 318, + "width": 99, + "height": 95, + "rawWidth": 99, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a9814": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@a9814", + "displayName": "", + "id": "a9814", + "name": "FlyFox4", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 243, + "trimY": 867, + "width": 101, + "height": 95, + "rawWidth": 101, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "58bd6": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@58bd6", + "displayName": "", + "id": "58bd6", + "name": "FlyFox5", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 146, + "trimY": 867, + "width": 102, + "height": 95, + "rawWidth": 102, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dcd5a": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@dcd5a", + "displayName": "", + "id": "dcd5a", + "name": "FlyFox6", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 492, + "trimY": 2, + "width": 102, + "height": 95, + "rawWidth": 102, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "06a0d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@06a0d", + "displayName": "", + "id": "06a0d", + "name": "FlyFox7", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 564, + "trimY": 313, + "width": 97, + "height": 95, + "rawWidth": 97, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5ba7d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@5ba7d", + "displayName": "", + "id": "5ba7d", + "name": "fox1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 299, + "trimY": 241, + "width": 66, + "height": 106, + "rawWidth": 66, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ccd2d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@ccd2d", + "displayName": "", + "id": "ccd2d", + "name": "fox2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 282, + "trimY": 585, + "width": 69, + "height": 101, + "rawWidth": 69, + "rawHeight": 101, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "776da": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@776da", + "displayName": "", + "id": "776da", + "name": "fox3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 486, + "trimY": 107, + "width": 70, + "height": 103, + "rawWidth": 70, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d5b6d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@d5b6d", + "displayName": "", + "id": "d5b6d", + "name": "fox5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 252, + "trimY": 733, + "width": 72, + "height": 101, + "rawWidth": 72, + "rawHeight": 101, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f6e74": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f6e74", + "displayName": "", + "id": "f6e74", + "name": "fox6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 457, + "trimY": 213, + "width": 70, + "height": 103, + "rawWidth": 70, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e190a": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@e190a", + "displayName": "", + "id": "e190a", + "name": "foxA1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 228, + "trimY": 363, + "width": 66, + "height": 111, + "rawWidth": 66, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8339e": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@8339e", + "displayName": "", + "id": "8339e", + "name": "foxA2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 873, + "width": 70, + "height": 113, + "rawWidth": 70, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9ee20": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@9ee20", + "displayName": "", + "id": "9ee20", + "name": "foxA3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 758, + "width": 70, + "height": 113, + "rawWidth": 70, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9b0fb": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@9b0fb", + "displayName": "", + "id": "9b0fb", + "name": "foxA4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 643, + "width": 70, + "height": 113, + "rawWidth": 70, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "32ba0": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@32ba0", + "displayName": "", + "id": "32ba0", + "name": "foxA5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 873, + "width": 70, + "height": 113, + "rawWidth": 70, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c2731": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@c2731", + "displayName": "", + "id": "c2731", + "name": "foxA6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 758, + "width": 70, + "height": 113, + "rawWidth": 70, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cdc28": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@cdc28", + "displayName": "", + "id": "cdc28", + "name": "foxA7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 74, + "trimY": 643, + "width": 70, + "height": 113, + "rawWidth": 70, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3cee5": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@3cee5", + "displayName": "", + "id": "3cee5", + "name": "foxA8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 175, + "trimY": 510, + "width": 66, + "height": 111, + "rawWidth": 66, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8a85a": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@8a85a", + "displayName": "", + "id": "8a85a", + "name": "left1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -1, + "trimX": 533, + "trimY": 419, + "width": 70, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "57e94": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@57e94", + "displayName": "", + "id": "57e94", + "name": "left1A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -1, + "trimX": 558, + "trimY": 657, + "width": 70, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "aa6ae": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@aa6ae", + "displayName": "", + "id": "aa6ae", + "name": "left2A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -2, + "trimX": 815, + "trimY": 100, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "356d0": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@356d0", + "displayName": "", + "id": "356d0", + "name": "left3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 387, + "trimY": 455, + "width": 72, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ec215": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@ec215", + "displayName": "", + "id": "ec215", + "name": "left3A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 353, + "trimY": 585, + "width": 72, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e578c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@e578c", + "displayName": "", + "id": "e578c", + "name": "left4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -2, + "trimX": 788, + "trimY": 198, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ef1d0": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@ef1d0", + "displayName": "", + "id": "ef1d0", + "name": "left4A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -2, + "trimX": 745, + "trimY": 298, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "587a0": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@587a0", + "displayName": "", + "id": "587a0", + "name": "left5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 6, + "offsetY": -2, + "trimX": 661, + "trimY": 305, + "width": 82, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "da76c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@da76c", + "displayName": "", + "id": "da76c", + "name": "left5A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 6, + "offsetY": -2, + "trimX": 605, + "trimY": 412, + "width": 82, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "adbf1": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@adbf1", + "displayName": "", + "id": "adbf1", + "name": "left6", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": -3, + "trimX": 915, + "trimY": 376, + "width": 70, + "height": 94, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b1369": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@b1369", + "displayName": "", + "id": "b1369", + "name": "left6A", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": -3, + "trimX": 819, + "trimY": 368, + "width": 70, + "height": 94, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c88f8": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@c88f8", + "displayName": "", + "id": "c88f8", + "name": "left7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 74, + "trimY": 398, + "width": 70, + "height": 122, + "rawWidth": 100, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e7c51": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@e7c51", + "displayName": "", + "id": "e7c51", + "name": "left7A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 2, + "trimY": 894, + "width": 70, + "height": 122, + "rawWidth": 100, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "05693": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@05693", + "displayName": "", + "id": "05693", + "name": "leftdialog", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 859, + "trimY": 448, + "width": 94, + "height": 58, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f89e8": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f89e8", + "displayName": "", + "id": "f89e8", + "name": "middle1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -1, + "trimX": 412, + "trimY": 867, + "width": 72, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "70b82": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@70b82", + "displayName": "", + "id": "70b82", + "name": "middle1A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -1, + "trimX": 589, + "trimY": 2, + "width": 72, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1d746": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@1d746", + "displayName": "", + "id": "1d746", + "name": "middle2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -2, + "trimX": 710, + "trimY": 200, + "width": 76, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6a33c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@6a33c", + "displayName": "", + "id": "6a33c", + "name": "middle2A", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": -2, + "trimX": 483, + "trimY": 789, + "width": 76, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d9ad3": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@d9ad3", + "displayName": "", + "id": "d9ad3", + "name": "middle3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 461, + "trimY": 455, + "width": 70, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0c67b": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@0c67b", + "displayName": "", + "id": "0c67b", + "name": "middle3A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 427, + "trimY": 557, + "width": 70, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1e694": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@1e694", + "displayName": "", + "id": "1e694", + "name": "middle4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -2, + "trimX": 689, + "trimY": 403, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1eccc": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@1eccc", + "displayName": "", + "id": "1eccc", + "name": "middle4A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -2, + "trimX": 655, + "trimY": 510, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "eccfd": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@eccfd", + "displayName": "", + "id": "eccfd", + "name": "middle5A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 6, + "offsetY": -2, + "trimX": 663, + "trimY": 2, + "width": 82, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0515c": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@0515c", + "displayName": "", + "id": "0515c", + "name": "middle6", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": -3, + "trimX": 915, + "trimY": 304, + "width": 70, + "height": 94, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c5dc3": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@c5dc3", + "displayName": "", + "id": "c5dc3", + "name": "middle6A", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": -3, + "trimX": 819, + "trimY": 296, + "width": 70, + "height": 94, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "91c80": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@91c80", + "displayName": "", + "id": "91c80", + "name": "middle7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 2, + "trimY": 770, + "width": 70, + "height": 122, + "rawWidth": 100, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3218d": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@3218d", + "displayName": "", + "id": "3218d", + "name": "middle7A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 2, + "trimY": 646, + "width": 70, + "height": 122, + "rawWidth": 100, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "16b36": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@16b36", + "displayName": "", + "id": "16b36", + "name": "right1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -1, + "trimX": 499, + "trimY": 557, + "width": 70, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "da883": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@da883", + "displayName": "", + "id": "da883", + "name": "right1A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -1, + "trimX": 486, + "trimY": 659, + "width": 70, + "height": 98, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f7d6f": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@f7d6f", + "displayName": "", + "id": "f7d6f", + "name": "right2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -2, + "trimX": 630, + "trimY": 617, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1c723": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@1c723", + "displayName": "", + "id": "1c723", + "name": "right2A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -2, + "trimX": 581, + "trimY": 757, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3eb2e": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@3eb2e", + "displayName": "", + "id": "3eb2e", + "name": "right3A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 340, + "trimY": 867, + "width": 70, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "544c4": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@544c4", + "displayName": "", + "id": "544c4", + "name": "right4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -2, + "trimX": 560, + "trimY": 867, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cf15b": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@cf15b", + "displayName": "", + "id": "cf15b", + "name": "right4A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": -2, + "trimX": 486, + "trimY": 867, + "width": 72, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c5d25": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@c5d25", + "displayName": "", + "id": "c5d25", + "name": "right5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 6, + "offsetY": -2, + "trimX": 655, + "trimY": 102, + "width": 82, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a37d1": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@a37d1", + "displayName": "", + "id": "a37d1", + "name": "right5A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 6, + "offsetY": -2, + "trimX": 626, + "trimY": 207, + "width": 82, + "height": 96, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8f0ff": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@8f0ff", + "displayName": "", + "id": "8f0ff", + "name": "right6", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": -3, + "trimX": 862, + "trimY": 224, + "width": 70, + "height": 94, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "aa456": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@aa456", + "displayName": "", + "id": "aa456", + "name": "right6A", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": -3, + "trimX": 889, + "trimY": 152, + "width": 70, + "height": 94, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d47b": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@7d47b", + "displayName": "", + "id": "7d47b", + "name": "right7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 2, + "trimY": 522, + "width": 70, + "height": 122, + "rawWidth": 100, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "290d3": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@290d3", + "displayName": "", + "id": "290d3", + "name": "right7A", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 2, + "trimY": 398, + "width": 70, + "height": 122, + "rawWidth": 100, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "aa687": { + "importer": "sprite-frame", + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9@aa687", + "displayName": "", + "id": "aa687", + "name": "rightdialog", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": 0, + "trimX": 763, + "trimY": 440, + "width": 94, + "height": 58, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "atlasUuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "objecta.png", + "format": 2, + "uuid": "1535464e-ffc0-4440-8a5a-e48d2279d3d9", + "textureUuid": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a" + } +} diff --git a/assets/static-res/shc/objecta.png b/assets/static-res/shc/objecta.png new file mode 100644 index 0000000..8644589 Binary files /dev/null and b/assets/static-res/shc/objecta.png differ diff --git a/assets/static-res/shc/objecta.png.meta b/assets/static-res/shc/objecta.png.meta new file mode 100644 index 0000000..9762b90 --- /dev/null +++ b/assets/static-res/shc/objecta.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "afe20cdb-9f50-4fce-8e7c-7331081b7923", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a", + "displayName": "objecta", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "afe20cdb-9f50-4fce-8e7c-7331081b7923", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "afe20cdb-9f50-4fce-8e7c-7331081b7923@6c48a" + } +} diff --git a/assets/static-res/shc/sound.meta b/assets/static-res/shc/sound.meta new file mode 100644 index 0000000..16a2d8f --- /dev/null +++ b/assets/static-res/shc/sound.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "ee8afe9f-5ee6-4b65-bebb-cba5a769c6d6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/static-res/shc/sound/bird1.wav b/assets/static-res/shc/sound/bird1.wav new file mode 100644 index 0000000..21d08a8 Binary files /dev/null and b/assets/static-res/shc/sound/bird1.wav differ diff --git a/assets/static-res/shc/sound/bird1.wav.meta b/assets/static-res/shc/sound/bird1.wav.meta new file mode 100644 index 0000000..585212e --- /dev/null +++ b/assets/static-res/shc/sound/bird1.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "357d07e9-06e3-4903-9653-c79ed1f8c19e", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/bird2.wav b/assets/static-res/shc/sound/bird2.wav new file mode 100644 index 0000000..3c3926d Binary files /dev/null and b/assets/static-res/shc/sound/bird2.wav differ diff --git a/assets/static-res/shc/sound/bird2.wav.meta b/assets/static-res/shc/sound/bird2.wav.meta new file mode 100644 index 0000000..8ba5575 --- /dev/null +++ b/assets/static-res/shc/sound/bird2.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "6eaaeb3e-1bf5-4337-9875-7396e13e1554", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/bird3.wav b/assets/static-res/shc/sound/bird3.wav new file mode 100644 index 0000000..91add1a Binary files /dev/null and b/assets/static-res/shc/sound/bird3.wav differ diff --git a/assets/static-res/shc/sound/bird3.wav.meta b/assets/static-res/shc/sound/bird3.wav.meta new file mode 100644 index 0000000..4402d0a --- /dev/null +++ b/assets/static-res/shc/sound/bird3.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "d30c8218-652f-42d7-b53e-2e59d14f531b", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/bomb.wav b/assets/static-res/shc/sound/bomb.wav new file mode 100644 index 0000000..b79e132 Binary files /dev/null and b/assets/static-res/shc/sound/bomb.wav differ diff --git a/assets/static-res/shc/sound/bomb.wav.meta b/assets/static-res/shc/sound/bomb.wav.meta new file mode 100644 index 0000000..88c401e --- /dev/null +++ b/assets/static-res/shc/sound/bomb.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "bc80e0dc-cf7a-46c1-8fc9-4582080524dc", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/buy.wav b/assets/static-res/shc/sound/buy.wav new file mode 100644 index 0000000..4b310ef Binary files /dev/null and b/assets/static-res/shc/sound/buy.wav differ diff --git a/assets/static-res/shc/sound/buy.wav.meta b/assets/static-res/shc/sound/buy.wav.meta new file mode 100644 index 0000000..6e6ab7b --- /dev/null +++ b/assets/static-res/shc/sound/buy.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "b2c532f6-3093-410f-a51e-acf82d7ee44e", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/camera.wav b/assets/static-res/shc/sound/camera.wav new file mode 100644 index 0000000..86a823b Binary files /dev/null and b/assets/static-res/shc/sound/camera.wav differ diff --git a/assets/static-res/shc/sound/camera.wav.meta b/assets/static-res/shc/sound/camera.wav.meta new file mode 100644 index 0000000..ab3a903 --- /dev/null +++ b/assets/static-res/shc/sound/camera.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "28fd7b9c-ea06-4a9a-b61a-b5071dac9d8d", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/click_ui.wav b/assets/static-res/shc/sound/click_ui.wav new file mode 100644 index 0000000..9d23308 Binary files /dev/null and b/assets/static-res/shc/sound/click_ui.wav differ diff --git a/assets/static-res/shc/sound/click_ui.wav.meta b/assets/static-res/shc/sound/click_ui.wav.meta new file mode 100644 index 0000000..85a09d5 --- /dev/null +++ b/assets/static-res/shc/sound/click_ui.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "044f7b9a-464e-4889-892d-39905f796338", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/complete.wav b/assets/static-res/shc/sound/complete.wav new file mode 100644 index 0000000..80ac189 Binary files /dev/null and b/assets/static-res/shc/sound/complete.wav differ diff --git a/assets/static-res/shc/sound/complete.wav.meta b/assets/static-res/shc/sound/complete.wav.meta new file mode 100644 index 0000000..c8d2d8f --- /dev/null +++ b/assets/static-res/shc/sound/complete.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "9cd3889e-a4b3-4466-981f-5b517eedad87", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/countdown.wav b/assets/static-res/shc/sound/countdown.wav new file mode 100644 index 0000000..7aa9d52 Binary files /dev/null and b/assets/static-res/shc/sound/countdown.wav differ diff --git a/assets/static-res/shc/sound/countdown.wav.meta b/assets/static-res/shc/sound/countdown.wav.meta new file mode 100644 index 0000000..ba20621 --- /dev/null +++ b/assets/static-res/shc/sound/countdown.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "1edfdadb-3a37-4fd1-8980-b0ca199cd43d", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/drop.wav b/assets/static-res/shc/sound/drop.wav new file mode 100644 index 0000000..1392029 Binary files /dev/null and b/assets/static-res/shc/sound/drop.wav differ diff --git a/assets/static-res/shc/sound/drop.wav.meta b/assets/static-res/shc/sound/drop.wav.meta new file mode 100644 index 0000000..097a80e --- /dev/null +++ b/assets/static-res/shc/sound/drop.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "72ee59e3-4e0e-4d6a-8e99-3c81cd2f8ee9", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/fox1.wav b/assets/static-res/shc/sound/fox1.wav new file mode 100644 index 0000000..afba415 Binary files /dev/null and b/assets/static-res/shc/sound/fox1.wav differ diff --git a/assets/static-res/shc/sound/fox1.wav.meta b/assets/static-res/shc/sound/fox1.wav.meta new file mode 100644 index 0000000..2658e45 --- /dev/null +++ b/assets/static-res/shc/sound/fox1.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "6966a877-e11f-415a-8eba-5f8e1c9bc7d4", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/fox2.wav b/assets/static-res/shc/sound/fox2.wav new file mode 100644 index 0000000..4b7cc89 Binary files /dev/null and b/assets/static-res/shc/sound/fox2.wav differ diff --git a/assets/static-res/shc/sound/fox2.wav.meta b/assets/static-res/shc/sound/fox2.wav.meta new file mode 100644 index 0000000..ac8d8d4 --- /dev/null +++ b/assets/static-res/shc/sound/fox2.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "a47de6b3-8a0e-4742-9630-8ea321537349", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/fox_dead.wav b/assets/static-res/shc/sound/fox_dead.wav new file mode 100644 index 0000000..72b76e8 Binary files /dev/null and b/assets/static-res/shc/sound/fox_dead.wav differ diff --git a/assets/static-res/shc/sound/fox_dead.wav.meta b/assets/static-res/shc/sound/fox_dead.wav.meta new file mode 100644 index 0000000..dd49035 --- /dev/null +++ b/assets/static-res/shc/sound/fox_dead.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "70d4d04f-e685-4557-bc51-b62a6d5bfaa3", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/get_coin.wav b/assets/static-res/shc/sound/get_coin.wav new file mode 100644 index 0000000..af420ea Binary files /dev/null and b/assets/static-res/shc/sound/get_coin.wav differ diff --git a/assets/static-res/shc/sound/get_coin.wav.meta b/assets/static-res/shc/sound/get_coin.wav.meta new file mode 100644 index 0000000..ba7235a --- /dev/null +++ b/assets/static-res/shc/sound/get_coin.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "68464d2b-7280-407e-80c4-a2f7a5983b77", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/startgame.wav b/assets/static-res/shc/sound/startgame.wav new file mode 100644 index 0000000..7b16101 Binary files /dev/null and b/assets/static-res/shc/sound/startgame.wav differ diff --git a/assets/static-res/shc/sound/startgame.wav.meta b/assets/static-res/shc/sound/startgame.wav.meta new file mode 100644 index 0000000..aeacbf0 --- /dev/null +++ b/assets/static-res/shc/sound/startgame.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "a6483a97-2d1f-4598-a363-a2b8bbcd9553", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/startmap.wav b/assets/static-res/shc/sound/startmap.wav new file mode 100644 index 0000000..e2319b2 Binary files /dev/null and b/assets/static-res/shc/sound/startmap.wav differ diff --git a/assets/static-res/shc/sound/startmap.wav.meta b/assets/static-res/shc/sound/startmap.wav.meta new file mode 100644 index 0000000..da0fbf1 --- /dev/null +++ b/assets/static-res/shc/sound/startmap.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "b7e5b3c2-1d81-47fd-8193-5805a06f5b8a", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/temple.wav b/assets/static-res/shc/sound/temple.wav new file mode 100644 index 0000000..553fad7 Binary files /dev/null and b/assets/static-res/shc/sound/temple.wav differ diff --git a/assets/static-res/shc/sound/temple.wav.meta b/assets/static-res/shc/sound/temple.wav.meta new file mode 100644 index 0000000..5a294ae --- /dev/null +++ b/assets/static-res/shc/sound/temple.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "1857a6cc-8a4c-4a1a-b4d8-c08c8a81f33c", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/tray.wav b/assets/static-res/shc/sound/tray.wav new file mode 100644 index 0000000..858f32d Binary files /dev/null and b/assets/static-res/shc/sound/tray.wav differ diff --git a/assets/static-res/shc/sound/tray.wav.meta b/assets/static-res/shc/sound/tray.wav.meta new file mode 100644 index 0000000..21de585 --- /dev/null +++ b/assets/static-res/shc/sound/tray.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "fb704548-4dcd-4fea-983d-1d0945f38290", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/update1.wav b/assets/static-res/shc/sound/update1.wav new file mode 100644 index 0000000..8bc00f9 Binary files /dev/null and b/assets/static-res/shc/sound/update1.wav differ diff --git a/assets/static-res/shc/sound/update1.wav.meta b/assets/static-res/shc/sound/update1.wav.meta new file mode 100644 index 0000000..440fff0 --- /dev/null +++ b/assets/static-res/shc/sound/update1.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "cbd5af4f-69c2-426a-b0f7-5485b88b94c2", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/update2.wav b/assets/static-res/shc/sound/update2.wav new file mode 100644 index 0000000..b9f8b86 Binary files /dev/null and b/assets/static-res/shc/sound/update2.wav differ diff --git a/assets/static-res/shc/sound/update2.wav.meta b/assets/static-res/shc/sound/update2.wav.meta new file mode 100644 index 0000000..ef33f34 --- /dev/null +++ b/assets/static-res/shc/sound/update2.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "2ce75b57-1986-46ac-857d-f6a724739379", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/sound/update3.wav b/assets/static-res/shc/sound/update3.wav new file mode 100644 index 0000000..420bb74 Binary files /dev/null and b/assets/static-res/shc/sound/update3.wav differ diff --git a/assets/static-res/shc/sound/update3.wav.meta b/assets/static-res/shc/sound/update3.wav.meta new file mode 100644 index 0000000..df31b84 --- /dev/null +++ b/assets/static-res/shc/sound/update3.wav.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.0.0", + "importer": "audio-clip", + "imported": true, + "uuid": "4f5b4f79-8ab5-40e0-9a6e-74d69a382064", + "files": [ + ".json", + ".wav" + ], + "subMetas": {}, + "userData": { + "downloadMode": 0 + } +} diff --git a/assets/static-res/shc/tilea.plist b/assets/static-res/shc/tilea.plist new file mode 100644 index 0000000..c4092ac --- /dev/null +++ b/assets/static-res/shc/tilea.plist @@ -0,0 +1,321 @@ + + + + + frames + + tilea1.png + + frame + {{1012,2},{1,1}} + offset + {-49.5,49.5} + rotated + + sourceColorRect + {{0,0},{1,1}} + sourceSize + {100,100} + + tilea10.png + + frame + {{644,410},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea11.png + + frame + {{848,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea12.png + + frame + {{746,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea13.png + + frame + {{644,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea14.png + + frame + {{848,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea15.png + + frame + {{972,2},{18,100}} + offset + {-41,0} + rotated + + sourceColorRect + {{0,0},{18,100}} + sourceSize + {100,100} + + tilea16.png + + frame + {{950,2},{20,100}} + offset + {40,0} + rotated + + sourceColorRect + {{80,0},{20,100}} + sourceSize + {100,100} + + tilea17.png + + frame + {{950,104},{100,18}} + offset + {0,41} + rotated + + sourceColorRect + {{0,0},{100,18}} + sourceSize + {100,100} + + tilea18.png + + frame + {{992,2},{100,18}} + offset + {0,-41} + rotated + + sourceColorRect + {{0,82},{100,18}} + sourceSize + {100,100} + + tilea19.png + + frame + {{970,122},{16,16}} + offset + {42,42} + rotated + + sourceColorRect + {{84,0},{16,16}} + sourceSize + {100,100} + + tilea2.png + + frame + {{746,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea20.png + + frame + {{1006,104},{16,16}} + offset + {-42,42} + rotated + + sourceColorRect + {{0,0},{16,16}} + sourceSize + {100,100} + + tilea21.png + + frame + {{988,104},{16,16}} + offset + {42,-42} + rotated + + sourceColorRect + {{84,84},{16,16}} + sourceSize + {100,100} + + tilea22.png + + frame + {{970,104},{16,16}} + offset + {-42,-42} + rotated + + sourceColorRect + {{0,84},{16,16}} + sourceSize + {100,100} + + tilea3.png + + frame + {{644,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea4.png + + frame + {{848,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea5.png + + frame + {{746,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea6.png + + frame + {{644,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea7.png + + frame + {{848,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea8.png + + frame + {{746,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea9.png + + frame + {{644,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilea_bg_main.png + + frame + {{2,2},{640,1360}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{640,1360}} + sourceSize + {640,1360} + + + metadata + + format + 2 + realTextureFileName + tilea.png + size + {1024,2048} + smartupdate + $TexturePacker:SmartUpdate:dd1d0f675e6c2522ddbee87c16a2cf49:1/1$ + textureFileName + tilea.png + + + diff --git a/assets/static-res/shc/tilea.plist.meta b/assets/static-res/shc/tilea.plist.meta new file mode 100644 index 0000000..260be32 --- /dev/null +++ b/assets/static-res/shc/tilea.plist.meta @@ -0,0 +1,1075 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "44366623-6607-4446-bb27-876d143ec647", + "files": [ + ".json" + ], + "subMetas": { + "a41c8": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@a41c8", + "displayName": "", + "id": "a41c8", + "name": "tilea1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -49.5, + "offsetY": 49.5, + "trimX": 1012, + "trimY": 2, + "width": 1, + "height": 1, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c93e3": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@c93e3", + "displayName": "", + "id": "c93e3", + "name": "tilea10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 410, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5a708": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@5a708", + "displayName": "", + "id": "5a708", + "name": "tilea11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a4ded": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@a4ded", + "displayName": "", + "id": "a4ded", + "name": "tilea12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ab1a0": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@ab1a0", + "displayName": "", + "id": "ab1a0", + "name": "tilea13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d5407": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@d5407", + "displayName": "", + "id": "d5407", + "name": "tilea14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cc205": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@cc205", + "displayName": "", + "id": "cc205", + "name": "tilea15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -41, + "offsetY": 0, + "trimX": 972, + "trimY": 2, + "width": 18, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7e682": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@7e682", + "displayName": "", + "id": "7e682", + "name": "tilea16", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 40, + "offsetY": 0, + "trimX": 950, + "trimY": 2, + "width": 20, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5d406": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@5d406", + "displayName": "", + "id": "5d406", + "name": "tilea17", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 41, + "trimX": 950, + "trimY": 104, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "abd1a": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@abd1a", + "displayName": "", + "id": "abd1a", + "name": "tilea18", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": -41, + "trimX": 992, + "trimY": 2, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8e849": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@8e849", + "displayName": "", + "id": "8e849", + "name": "tilea19", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": 42, + "trimX": 970, + "trimY": 122, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cea02": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@cea02", + "displayName": "", + "id": "cea02", + "name": "tilea2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d9a89": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@d9a89", + "displayName": "", + "id": "d9a89", + "name": "tilea20", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": 42, + "trimX": 1006, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "92b53": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@92b53", + "displayName": "", + "id": "92b53", + "name": "tilea21", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": -42, + "trimX": 988, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "19dbe": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@19dbe", + "displayName": "", + "id": "19dbe", + "name": "tilea22", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": -42, + "trimX": 970, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4cd42": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@4cd42", + "displayName": "", + "id": "4cd42", + "name": "tilea3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bb3ea": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@bb3ea", + "displayName": "", + "id": "bb3ea", + "name": "tilea4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d022d": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@d022d", + "displayName": "", + "id": "d022d", + "name": "tilea5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6ff1": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@e6ff1", + "displayName": "", + "id": "e6ff1", + "name": "tilea6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1e629": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@1e629", + "displayName": "", + "id": "1e629", + "name": "tilea7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7a861": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@7a861", + "displayName": "", + "id": "7a861", + "name": "tilea8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ea0ad": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@ea0ad", + "displayName": "", + "id": "ea0ad", + "name": "tilea9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "81b23": { + "importer": "sprite-frame", + "uuid": "44366623-6607-4446-bb27-876d143ec647@81b23", + "displayName": "", + "id": "81b23", + "name": "tilea_bg_main", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 640, + "height": 1360, + "rawWidth": 640, + "rawHeight": 1360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "atlasUuid": "44366623-6607-4446-bb27-876d143ec647", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "tilea.png", + "format": 2, + "uuid": "44366623-6607-4446-bb27-876d143ec647", + "textureUuid": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a" + } +} diff --git a/assets/static-res/shc/tilea.png b/assets/static-res/shc/tilea.png new file mode 100644 index 0000000..bd172dd Binary files /dev/null and b/assets/static-res/shc/tilea.png differ diff --git a/assets/static-res/shc/tilea.png.meta b/assets/static-res/shc/tilea.png.meta new file mode 100644 index 0000000..8985e97 --- /dev/null +++ b/assets/static-res/shc/tilea.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "03578bdf-c484-4efa-b294-df1909232aa3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a", + "displayName": "tilea", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "03578bdf-c484-4efa-b294-df1909232aa3", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "03578bdf-c484-4efa-b294-df1909232aa3@6c48a" + } +} diff --git a/assets/static-res/shc/tilew.plist b/assets/static-res/shc/tilew.plist new file mode 100644 index 0000000..fd90893 --- /dev/null +++ b/assets/static-res/shc/tilew.plist @@ -0,0 +1,321 @@ + + + + + frames + + tilew1.png + + frame + {{1012,2},{1,1}} + offset + {-49.5,49.5} + rotated + + sourceColorRect + {{0,0},{1,1}} + sourceSize + {100,100} + + tilew10.png + + frame + {{644,410},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew11.png + + frame + {{848,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew12.png + + frame + {{746,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew13.png + + frame + {{644,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew14.png + + frame + {{848,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew15.png + + frame + {{972,2},{18,100}} + offset + {-41,0} + rotated + + sourceColorRect + {{0,0},{18,100}} + sourceSize + {100,100} + + tilew16.png + + frame + {{950,2},{20,100}} + offset + {40,0} + rotated + + sourceColorRect + {{80,0},{20,100}} + sourceSize + {100,100} + + tilew17.png + + frame + {{950,104},{100,18}} + offset + {0,41} + rotated + + sourceColorRect + {{0,0},{100,18}} + sourceSize + {100,100} + + tilew18.png + + frame + {{992,2},{100,18}} + offset + {0,-41} + rotated + + sourceColorRect + {{0,82},{100,18}} + sourceSize + {100,100} + + tilew19.png + + frame + {{970,122},{16,16}} + offset + {42,42} + rotated + + sourceColorRect + {{84,0},{16,16}} + sourceSize + {100,100} + + tilew2.png + + frame + {{746,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew20.png + + frame + {{1006,104},{16,16}} + offset + {-42,42} + rotated + + sourceColorRect + {{0,0},{16,16}} + sourceSize + {100,100} + + tilew21.png + + frame + {{988,104},{16,16}} + offset + {42,-42} + rotated + + sourceColorRect + {{84,84},{16,16}} + sourceSize + {100,100} + + tilew22.png + + frame + {{970,104},{16,16}} + offset + {-42,-42} + rotated + + sourceColorRect + {{0,84},{16,16}} + sourceSize + {100,100} + + tilew3.png + + frame + {{644,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew4.png + + frame + {{848,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew5.png + + frame + {{746,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew6.png + + frame + {{644,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew7.png + + frame + {{848,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew8.png + + frame + {{746,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew9.png + + frame + {{644,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilew_bg_main.png + + frame + {{2,2},{640,1360}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{640,1360}} + sourceSize + {640,1360} + + + metadata + + format + 2 + realTextureFileName + tilew.png + size + {1024,2048} + smartupdate + $TexturePacker:SmartUpdate:fb1421807ce669ef4cd462c2876b2117:1/1$ + textureFileName + tilew.png + + + diff --git a/assets/static-res/shc/tilew.plist.meta b/assets/static-res/shc/tilew.plist.meta new file mode 100644 index 0000000..9bd8fb9 --- /dev/null +++ b/assets/static-res/shc/tilew.plist.meta @@ -0,0 +1,1075 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "files": [ + ".json" + ], + "subMetas": { + "89f5d": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@89f5d", + "displayName": "", + "id": "89f5d", + "name": "tilew1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -49.5, + "offsetY": 49.5, + "trimX": 1012, + "trimY": 2, + "width": 1, + "height": 1, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "32f45": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@32f45", + "displayName": "", + "id": "32f45", + "name": "tilew10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 410, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d0820": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@d0820", + "displayName": "", + "id": "d0820", + "name": "tilew11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0d6bd": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@0d6bd", + "displayName": "", + "id": "0d6bd", + "name": "tilew12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a2d31": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@a2d31", + "displayName": "", + "id": "a2d31", + "name": "tilew13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "618d4": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@618d4", + "displayName": "", + "id": "618d4", + "name": "tilew14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a7466": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@a7466", + "displayName": "", + "id": "a7466", + "name": "tilew15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -41, + "offsetY": 0, + "trimX": 972, + "trimY": 2, + "width": 18, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9cfc4": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@9cfc4", + "displayName": "", + "id": "9cfc4", + "name": "tilew16", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 40, + "offsetY": 0, + "trimX": 950, + "trimY": 2, + "width": 20, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3bdc0": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@3bdc0", + "displayName": "", + "id": "3bdc0", + "name": "tilew17", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 41, + "trimX": 950, + "trimY": 104, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d43a4": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@d43a4", + "displayName": "", + "id": "d43a4", + "name": "tilew18", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": -41, + "trimX": 992, + "trimY": 2, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5b70f": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@5b70f", + "displayName": "", + "id": "5b70f", + "name": "tilew19", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": 42, + "trimX": 970, + "trimY": 122, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3d61e": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@3d61e", + "displayName": "", + "id": "3d61e", + "name": "tilew2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d067a": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@d067a", + "displayName": "", + "id": "d067a", + "name": "tilew20", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": 42, + "trimX": 1006, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "08fdc": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@08fdc", + "displayName": "", + "id": "08fdc", + "name": "tilew21", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": -42, + "trimX": 988, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "58d73": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@58d73", + "displayName": "", + "id": "58d73", + "name": "tilew22", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": -42, + "trimX": 970, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2d7c1": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@2d7c1", + "displayName": "", + "id": "2d7c1", + "name": "tilew3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "25fea": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@25fea", + "displayName": "", + "id": "25fea", + "name": "tilew4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0975c": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@0975c", + "displayName": "", + "id": "0975c", + "name": "tilew5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b76e4": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@b76e4", + "displayName": "", + "id": "b76e4", + "name": "tilew6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "757ed": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@757ed", + "displayName": "", + "id": "757ed", + "name": "tilew7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b05be": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@b05be", + "displayName": "", + "id": "b05be", + "name": "tilew8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "510e3": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@510e3", + "displayName": "", + "id": "510e3", + "name": "tilew9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8049c": { + "importer": "sprite-frame", + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78@8049c", + "displayName": "", + "id": "8049c", + "name": "tilew_bg_main", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 640, + "height": 1360, + "rawWidth": 640, + "rawHeight": 1360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "atlasUuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "tilew.png", + "format": 2, + "uuid": "6353e283-e8b7-4f4f-8fb5-d21406865c78", + "textureUuid": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a" + } +} diff --git a/assets/static-res/shc/tilew.png b/assets/static-res/shc/tilew.png new file mode 100644 index 0000000..0562a71 Binary files /dev/null and b/assets/static-res/shc/tilew.png differ diff --git a/assets/static-res/shc/tilew.png.meta b/assets/static-res/shc/tilew.png.meta new file mode 100644 index 0000000..0cb9e03 --- /dev/null +++ b/assets/static-res/shc/tilew.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0f83916a-2d0b-49f8-a289-8e824c67520f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a", + "displayName": "tilew", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "0f83916a-2d0b-49f8-a289-8e824c67520f", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0f83916a-2d0b-49f8-a289-8e824c67520f@6c48a" + } +} diff --git a/assets/static-res/shc/tilex.plist b/assets/static-res/shc/tilex.plist new file mode 100644 index 0000000..b438e9f --- /dev/null +++ b/assets/static-res/shc/tilex.plist @@ -0,0 +1,321 @@ + + + + + frames + + tilex1.png + + frame + {{1012,2},{1,1}} + offset + {-49.5,49.5} + rotated + + sourceColorRect + {{0,0},{1,1}} + sourceSize + {100,100} + + tilex10.png + + frame + {{644,410},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex11.png + + frame + {{848,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex12.png + + frame + {{746,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex13.png + + frame + {{644,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex14.png + + frame + {{848,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex15.png + + frame + {{972,2},{18,100}} + offset + {-41,0} + rotated + + sourceColorRect + {{0,0},{18,100}} + sourceSize + {100,100} + + tilex16.png + + frame + {{950,2},{20,100}} + offset + {40,0} + rotated + + sourceColorRect + {{80,0},{20,100}} + sourceSize + {100,100} + + tilex17.png + + frame + {{950,104},{100,18}} + offset + {0,41} + rotated + + sourceColorRect + {{0,0},{100,18}} + sourceSize + {100,100} + + tilex18.png + + frame + {{992,2},{100,18}} + offset + {0,-41} + rotated + + sourceColorRect + {{0,82},{100,18}} + sourceSize + {100,100} + + tilex19.png + + frame + {{970,122},{16,16}} + offset + {42,42} + rotated + + sourceColorRect + {{84,0},{16,16}} + sourceSize + {100,100} + + tilex2.png + + frame + {{746,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex20.png + + frame + {{1006,104},{16,16}} + offset + {-42,42} + rotated + + sourceColorRect + {{0,0},{16,16}} + sourceSize + {100,100} + + tilex21.png + + frame + {{988,104},{16,16}} + offset + {42,-42} + rotated + + sourceColorRect + {{84,84},{16,16}} + sourceSize + {100,100} + + tilex22.png + + frame + {{970,104},{16,16}} + offset + {-42,-42} + rotated + + sourceColorRect + {{0,84},{16,16}} + sourceSize + {100,100} + + tilex3.png + + frame + {{644,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex4.png + + frame + {{848,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex5.png + + frame + {{746,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex6.png + + frame + {{644,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex7.png + + frame + {{848,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex8.png + + frame + {{746,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex9.png + + frame + {{644,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tilex_bg_main.png + + frame + {{2,2},{640,1360}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{640,1360}} + sourceSize + {640,1360} + + + metadata + + format + 2 + realTextureFileName + tilex.png + size + {1024,2048} + smartupdate + $TexturePacker:SmartUpdate:ee73e3ba4486ffb5064e2b53fcad010c:1/1$ + textureFileName + tilex.png + + + diff --git a/assets/static-res/shc/tilex.plist.meta b/assets/static-res/shc/tilex.plist.meta new file mode 100644 index 0000000..c245de9 --- /dev/null +++ b/assets/static-res/shc/tilex.plist.meta @@ -0,0 +1,1075 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "files": [ + ".json" + ], + "subMetas": { + "44361": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@44361", + "displayName": "", + "id": "44361", + "name": "tilex1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -49.5, + "offsetY": 49.5, + "trimX": 1012, + "trimY": 2, + "width": 1, + "height": 1, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6246a": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@6246a", + "displayName": "", + "id": "6246a", + "name": "tilex10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 410, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c70a4": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@c70a4", + "displayName": "", + "id": "c70a4", + "name": "tilex11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e6d1a": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@e6d1a", + "displayName": "", + "id": "e6d1a", + "name": "tilex12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "747fa": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@747fa", + "displayName": "", + "id": "747fa", + "name": "tilex13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "35a80": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@35a80", + "displayName": "", + "id": "35a80", + "name": "tilex14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1d484": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@1d484", + "displayName": "", + "id": "1d484", + "name": "tilex15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -41, + "offsetY": 0, + "trimX": 972, + "trimY": 2, + "width": 18, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c30ed": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@c30ed", + "displayName": "", + "id": "c30ed", + "name": "tilex16", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 40, + "offsetY": 0, + "trimX": 950, + "trimY": 2, + "width": 20, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1c61f": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@1c61f", + "displayName": "", + "id": "1c61f", + "name": "tilex17", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 41, + "trimX": 950, + "trimY": 104, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7f542": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@7f542", + "displayName": "", + "id": "7f542", + "name": "tilex18", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": -41, + "trimX": 992, + "trimY": 2, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "65cd6": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@65cd6", + "displayName": "", + "id": "65cd6", + "name": "tilex19", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": 42, + "trimX": 970, + "trimY": 122, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b53d4": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@b53d4", + "displayName": "", + "id": "b53d4", + "name": "tilex2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c0832": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@c0832", + "displayName": "", + "id": "c0832", + "name": "tilex20", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": 42, + "trimX": 1006, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "88e13": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@88e13", + "displayName": "", + "id": "88e13", + "name": "tilex21", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": -42, + "trimX": 988, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9ff46": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@9ff46", + "displayName": "", + "id": "9ff46", + "name": "tilex22", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": -42, + "trimX": 970, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7f452": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@7f452", + "displayName": "", + "id": "7f452", + "name": "tilex3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3bc78": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@3bc78", + "displayName": "", + "id": "3bc78", + "name": "tilex4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2aaed": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@2aaed", + "displayName": "", + "id": "2aaed", + "name": "tilex5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6de4b": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@6de4b", + "displayName": "", + "id": "6de4b", + "name": "tilex6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4cd74": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@4cd74", + "displayName": "", + "id": "4cd74", + "name": "tilex7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9a9cd": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@9a9cd", + "displayName": "", + "id": "9a9cd", + "name": "tilex8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "0915f": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@0915f", + "displayName": "", + "id": "0915f", + "name": "tilex9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9678b": { + "importer": "sprite-frame", + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8@9678b", + "displayName": "", + "id": "9678b", + "name": "tilex_bg_main", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 640, + "height": 1360, + "rawWidth": 640, + "rawHeight": 1360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "atlasUuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "tilex.png", + "format": 2, + "uuid": "81620165-cd62-4090-ae8e-59b4677b14e8", + "textureUuid": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a" + } +} diff --git a/assets/static-res/shc/tilex.png b/assets/static-res/shc/tilex.png new file mode 100644 index 0000000..bf08ac9 Binary files /dev/null and b/assets/static-res/shc/tilex.png differ diff --git a/assets/static-res/shc/tilex.png.meta b/assets/static-res/shc/tilex.png.meta new file mode 100644 index 0000000..1a7c1f3 --- /dev/null +++ b/assets/static-res/shc/tilex.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f756f086-129a-4de4-aaf6-9a05efb4766c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a", + "displayName": "tilex", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "f756f086-129a-4de4-aaf6-9a05efb4766c", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f756f086-129a-4de4-aaf6-9a05efb4766c@6c48a" + } +} diff --git a/assets/static-res/shc/tiley.plist b/assets/static-res/shc/tiley.plist new file mode 100644 index 0000000..2a322be --- /dev/null +++ b/assets/static-res/shc/tiley.plist @@ -0,0 +1,321 @@ + + + + + frames + + tiley1.png + + frame + {{1012,2},{1,1}} + offset + {-49.5,49.5} + rotated + + sourceColorRect + {{0,0},{1,1}} + sourceSize + {100,100} + + tiley10.png + + frame + {{644,410},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley11.png + + frame + {{848,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley12.png + + frame + {{746,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley13.png + + frame + {{644,308},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley14.png + + frame + {{848,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley15.png + + frame + {{972,2},{18,100}} + offset + {-41,0} + rotated + + sourceColorRect + {{0,0},{18,100}} + sourceSize + {100,100} + + tiley16.png + + frame + {{950,2},{20,100}} + offset + {40,0} + rotated + + sourceColorRect + {{80,0},{20,100}} + sourceSize + {100,100} + + tiley17.png + + frame + {{950,104},{100,18}} + offset + {0,41} + rotated + + sourceColorRect + {{0,0},{100,18}} + sourceSize + {100,100} + + tiley18.png + + frame + {{992,2},{100,18}} + offset + {0,-41} + rotated + + sourceColorRect + {{0,82},{100,18}} + sourceSize + {100,100} + + tiley19.png + + frame + {{970,122},{16,16}} + offset + {42,42} + rotated + + sourceColorRect + {{84,0},{16,16}} + sourceSize + {100,100} + + tiley2.png + + frame + {{746,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley20.png + + frame + {{1006,104},{16,16}} + offset + {-42,42} + rotated + + sourceColorRect + {{0,0},{16,16}} + sourceSize + {100,100} + + tiley21.png + + frame + {{988,104},{16,16}} + offset + {42,-42} + rotated + + sourceColorRect + {{84,84},{16,16}} + sourceSize + {100,100} + + tiley22.png + + frame + {{970,104},{16,16}} + offset + {-42,-42} + rotated + + sourceColorRect + {{0,84},{16,16}} + sourceSize + {100,100} + + tiley3.png + + frame + {{644,206},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley4.png + + frame + {{848,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley5.png + + frame + {{746,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley6.png + + frame + {{644,104},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley7.png + + frame + {{848,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley8.png + + frame + {{746,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley9.png + + frame + {{644,2},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + tiley_bg_main.png + + frame + {{2,2},{640,1360}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{640,1360}} + sourceSize + {640,1360} + + + metadata + + format + 2 + realTextureFileName + tiley.png + size + {1024,2048} + smartupdate + $TexturePacker:SmartUpdate:7b91cc9aedd4b09c09d9b99fcc17108a:1/1$ + textureFileName + tiley.png + + + diff --git a/assets/static-res/shc/tiley.plist.meta b/assets/static-res/shc/tiley.plist.meta new file mode 100644 index 0000000..03e3e37 --- /dev/null +++ b/assets/static-res/shc/tiley.plist.meta @@ -0,0 +1,1075 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "files": [ + ".json" + ], + "subMetas": { + "54607": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@54607", + "displayName": "", + "id": "54607", + "name": "tiley1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -49.5, + "offsetY": 49.5, + "trimX": 1012, + "trimY": 2, + "width": 1, + "height": 1, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "68030": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@68030", + "displayName": "", + "id": "68030", + "name": "tiley11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "96347": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@96347", + "displayName": "", + "id": "96347", + "name": "tiley17", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 41, + "trimX": 950, + "trimY": 104, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7d36e": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@7d36e", + "displayName": "", + "id": "7d36e", + "name": "tiley10", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 410, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "43ad1": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@43ad1", + "displayName": "", + "id": "43ad1", + "name": "tiley12", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ccabf": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@ccabf", + "displayName": "", + "id": "ccabf", + "name": "tiley13", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 308, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c92c1": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@c92c1", + "displayName": "", + "id": "c92c1", + "name": "tiley14", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8a4e0": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@8a4e0", + "displayName": "", + "id": "8a4e0", + "name": "tiley15", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -41, + "offsetY": 0, + "trimX": 972, + "trimY": 2, + "width": 18, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dfccc": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@dfccc", + "displayName": "", + "id": "dfccc", + "name": "tiley16", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 40, + "offsetY": 0, + "trimX": 950, + "trimY": 2, + "width": 20, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "71c77": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@71c77", + "displayName": "", + "id": "71c77", + "name": "tiley18", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": -41, + "trimX": 992, + "trimY": 2, + "width": 100, + "height": 18, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3b217": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@3b217", + "displayName": "", + "id": "3b217", + "name": "tiley19", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": 42, + "trimX": 970, + "trimY": 122, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a9060": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@a9060", + "displayName": "", + "id": "a9060", + "name": "tiley2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dcbc4": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@dcbc4", + "displayName": "", + "id": "dcbc4", + "name": "tiley20", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": 42, + "trimX": 1006, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c78b5": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@c78b5", + "displayName": "", + "id": "c78b5", + "name": "tiley21", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 42, + "offsetY": -42, + "trimX": 988, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a2501": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@a2501", + "displayName": "", + "id": "a2501", + "name": "tiley22", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": -42, + "offsetY": -42, + "trimX": 970, + "trimY": 104, + "width": 16, + "height": 16, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a59e7": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@a59e7", + "displayName": "", + "id": "a59e7", + "name": "tiley3", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 206, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2c24f": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@2c24f", + "displayName": "", + "id": "2c24f", + "name": "tiley4", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c22d1": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@c22d1", + "displayName": "", + "id": "c22d1", + "name": "tiley5", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "00c58": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@00c58", + "displayName": "", + "id": "00c58", + "name": "tiley6", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 104, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c742a": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@c742a", + "displayName": "", + "id": "c742a", + "name": "tiley7", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6a595": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@6a595", + "displayName": "", + "id": "6a595", + "name": "tiley8", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 746, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "13b91": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@13b91", + "displayName": "", + "id": "13b91", + "name": "tiley9", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 2, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b4bb8": { + "importer": "sprite-frame", + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18@b4bb8", + "displayName": "", + "id": "b4bb8", + "name": "tiley_bg_main", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 640, + "height": 1360, + "rawWidth": 640, + "rawHeight": 1360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "atlasUuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "tiley.png", + "format": 2, + "uuid": "597292e9-e953-4f74-b1e5-fb517c43eb18", + "textureUuid": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a" + } +} diff --git a/assets/static-res/shc/tiley.png b/assets/static-res/shc/tiley.png new file mode 100644 index 0000000..e0431c5 Binary files /dev/null and b/assets/static-res/shc/tiley.png differ diff --git a/assets/static-res/shc/tiley.png.meta b/assets/static-res/shc/tiley.png.meta new file mode 100644 index 0000000..50ccf54 --- /dev/null +++ b/assets/static-res/shc/tiley.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a", + "displayName": "tiley", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f6e62a75-1a2b-4a11-8154-6f4a7a536b5d@6c48a" + } +} diff --git a/assets/static-res/shc/ui.plist b/assets/static-res/shc/ui.plist new file mode 100644 index 0000000..3d59659 --- /dev/null +++ b/assets/static-res/shc/ui.plist @@ -0,0 +1,1179 @@ + + + + + frames + + Copper.png + + frame + {{126,2006},{40,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{40,60}} + sourceSize + {40,60} + + DownButton1.png + + frame + {{1682,1856},{100,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,60}} + sourceSize + {100,60} + + DownButton2.png + + frame + {{1580,1856},{100,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,60}} + sourceSize + {100,60} + + Gold.png + + frame + {{64,2006},{40,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{40,60}} + sourceSize + {40,60} + + Introduction.png + + frame + {{1364,1856},{75,45}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{75,45}} + sourceSize + {75,45} + + Introduction1.png + + frame + {{699,2006},{61,37}} + offset + {0,0} + rotated + + sourceColorRect + {{7,4},{61,37}} + sourceSize + {75,45} + + OverAchievement.png + + frame + {{1282,2},{556,700}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{556,700}} + sourceSize + {556,700} + + Silver.png + + frame + {{2,2006},{40,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{40,60}} + sourceSize + {40,60} + + Startbg.png + + frame + {{2,1364},{640,1136}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{640,1136}} + sourceSize + {640,1136} + + Startbutton.png + + frame + {{1587,560},{296,122}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{296,122}} + sourceSize + {296,122} + + Startbutton1.png + + frame + {{1745,560},{236,98}} + offset + {0,0} + rotated + + sourceColorRect + {{30,12},{236,98}} + sourceSize + {296,122} + + TopLeftButton.png + + frame + {{1813,789},{160,46}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{160,46}} + sourceSize + {160,46} + + TopRightButton.png + + frame + {{1282,1934},{110,110}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{110,110}} + sourceSize + {110,110} + + TopRightButton1.png + + frame + {{1930,1585},{88,88}} + offset + {0,0} + rotated + + sourceColorRect + {{11,11},{88,88}} + sourceSize + {110,110} + + Y1146.png + + frame + {{1270,560},{351,151}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{351,151}} + sourceSize + {351,151} + + Y360.png + + frame + {{1587,858},{156,52}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{156,52}} + sourceSize + {156,52} + + Y640.png + + frame + {{1592,914},{398,185}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{398,185}} + sourceSize + {398,185} + + Y800.png + + frame + {{1984,80},{108,61}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{108,61}} + sourceSize + {108,61} + + Y914.png + + frame + {{1118,565},{142,52}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{142,52}} + sourceSize + {142,52} + + achievement.png + + frame + {{1364,1332},{496,522}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{496,522}} + sourceSize + {496,522} + + achievementButton.png + + frame + {{1505,560},{350,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{350,80}} + sourceSize + {350,80} + + bigMap.png + + frame + {{2,2},{640,1360}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{640,1360}} + sourceSize + {640,1360} + + buttonback.png + + frame + {{1780,1918},{88,48}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{88,48}} + sourceSize + {88,48} + + buttonback1.png + + frame + {{408,2006},{70,38}} + offset + {0,0} + rotated + + sourceColorRect + {{9,5},{70,38}} + sourceSize + {88,48} + + buttonrestart.png + + frame + {{1730,1918},{118,48}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{118,48}} + sourceSize + {118,48} + + buttonrestart1.png + + frame + {{312,2006},{94,38}} + offset + {0,0} + rotated + + sourceColorRect + {{12,5},{94,38}} + sourceSize + {118,48} + + buttonrestart2.png + + frame + {{1680,1918},{118,48}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{118,48}} + sourceSize + {118,48} + + camera.png + + frame + {{1862,1454},{70,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,60}} + sourceSize + {70,60} + + camera1.png + + frame + {{1989,1218},{56,48}} + offset + {0,0} + rotated + + sourceColorRect + {{7,6},{56,48}} + sourceSize + {70,60} + + close.png + + frame + {{1512,1856},{66,66}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,66}} + sourceSize + {66,66} + + close1.png + + frame + {{1992,914},{52,52}} + offset + {0,0} + rotated + + sourceColorRect + {{7,7},{52,52}} + sourceSize + {66,66} + + coin.png + + frame + {{1992,968},{52,44}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{52,44}} + sourceSize + {52,44} + + downButton11.png + + frame + {{1996,1675},{80,48}} + offset + {0,0} + rotated + + sourceColorRect + {{10,6},{80,48}} + sourceSize + {100,60} + + downButton21.png + + frame + {{1862,1712},{80,48}} + offset + {0,0} + rotated + + sourceColorRect + {{10,6},{80,48}} + sourceSize + {100,60} + + finish.png + + frame + {{279,2006},{40,31}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{40,31}} + sourceSize + {40,31} + + foxcountry.png + + frame + {{1936,1292},{103,87}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{103,87}} + sourceSize + {103,87} + + goal.png + + frame + {{480,2006},{38,48}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{38,48}} + sourceSize + {38,48} + + goalbg.png + + frame + {{1423,560},{350,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{350,80}} + sourceSize + {350,80} + + home.png + + frame + {{1862,1392},{70,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,60}} + sourceSize + {70,60} + + home1.png + + frame + {{1990,1168},{56,48}} + offset + {0,0} + rotated + + sourceColorRect + {{7,6},{56,48}} + sourceSize + {70,60} + + line.png + + frame + {{762,2014},{518,2}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{518,2}} + sourceSize + {518,2} + + lock.png + + frame + {{1862,1516},{66,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{66,80}} + sourceSize + {66,80} + + lockedMap.png + + frame + {{644,934},{472,416}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{472,416}} + sourceSize + {472,416} + + logo.png + + frame + {{1140,52},{256,131}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{256,131}} + sourceSize + {256,131} + + more.png + + frame + {{1496,1932},{100,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,60}} + sourceSize + {100,60} + + more1.png + + frame + {{1914,1675},{80,48}} + offset + {0,0} + rotated + + sourceColorRect + {{10,6},{80,48}} + sourceSize + {100,60} + + newArrow.png + + frame + {{1984,2},{62,76}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{62,76}} + sourceSize + {62,76} + + newSelect.png + + frame + {{1394,1933},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + newTop.png + + frame + {{1934,1483},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + newtips.png + + frame + {{1140,1332},{600,150}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{600,150}} + sourceSize + {600,150} + + nostar.png + + frame + {{1411,1856},{99,74}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{99,74}} + sourceSize + {99,74} + + numberbg copy.png + + frame + {{1745,855},{220,55}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{220,55}} + sourceSize + {220,55} + + numberbg.png + + frame + {{1745,660},{220,65}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{220,65}} + sourceSize + {220,65} + + onestar.png + + frame + {{1140,1934},{103,75}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{103,75}} + sourceSize + {103,75} + + packClose.png + + frame + {{1862,1101},{126,90}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{126,90}} + sourceSize + {126,90} + + packOpen.png + + frame + {{1711,727},{126,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{126,100}} + sourceSize + {126,100} + + rank1.png + + frame + {{1984,552},{360,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{360,60}} + sourceSize + {360,60} + + rank2.png + + frame + {{1984,190},{360,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{360,60}} + sourceSize + {360,60} + + scroller.png + + frame + {{762,2006},{6,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{6,60}} + sourceSize + {6,60} + + selected.png + + frame + {{1558,1924},{120,120}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{120,120}} + sourceSize + {120,120} + + selected1.png + + frame + {{1934,1381},{100,100}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{100,100}} + sourceSize + {100,100} + + set.png + + frame + {{1862,1330},{70,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,60}} + sourceSize + {70,60} + + set1.png + + frame + {{1990,1118},{56,48}} + offset + {0,0} + rotated + + sourceColorRect + {{7,6},{56,48}} + sourceSize + {70,60} + + settingBg.png + + frame + {{1118,914},{416,472}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{416,472}} + sourceSize + {416,472} + + settingButton.png + + frame + {{1813,727},{160,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{160,60}} + sourceSize + {160,60} + + settingButton1.png + + frame + {{1140,515},{128,48}} + offset + {0,0} + rotated + + sourceColorRect + {{16,6},{128,48}} + sourceSize + {160,60} + + shop.png + + frame + {{188,2006},{56,40}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{56,40}} + sourceSize + {56,40} + + shopbg.png + + frame + {{1764,1268},{170,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{170,60}} + sourceSize + {170,60} + + shopbg1.png + + frame + {{1140,2},{136,48}} + offset + {0,0} + rotated + + sourceColorRect + {{17,6},{136,48}} + sourceSize + {170,60} + + shopbg2.png + + frame + {{1592,1268},{170,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{170,60}} + sourceSize + {170,60} + + star11.png + + frame + {{1862,1660},{50,50}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{50,50}} + sourceSize + {50,50} + + star22.png + + frame + {{1936,1240},{50,50}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{50,50}} + sourceSize + {50,50} + + start.png + + frame + {{1862,1193},{125,45}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{125,45}} + sourceSize + {125,45} + + start1.png + + frame + {{530,2006},{101,37}} + offset + {0,0} + rotated + + sourceColorRect + {{12,4},{101,37}} + sourceSize + {125,45} + + starx.png + + frame + {{1992,1066},{51,50}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{51,50}} + sourceSize + {51,50} + + starx1.png + + frame + {{1992,1014},{51,50}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{51,50}} + sourceSize + {51,50} + + tab1.png + + frame + {{1830,1938},{206,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{206,80}} + sourceSize + {206,80} + + tab2.png + + frame + {{1830,1856},{206,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{206,80}} + sourceSize + {206,80} + + tabnew.png + + frame + {{644,2},{494,512}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{494,512}} + sourceSize + {494,512} + + take.png + + frame + {{1862,1598},{60,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{60,60}} + sourceSize + {60,60} + + take0.png + + frame + {{1912,1772},{80,45}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{80,45}} + sourceSize + {80,45} + + take1.png + + frame + {{633,2006},{64,37}} + offset + {0,0} + rotated + + sourceColorRect + {{8,4},{64,37}} + sourceSize + {80,45} + + take2.png + + frame + {{1912,1725},{80,45}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{80,45}} + sourceSize + {80,45} + + threestar.png + + frame + {{1140,310},{130,112}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{130,112}} + sourceSize + {130,112} + + tips.png + + frame + {{1292,1332},{600,70}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{600,70}} + sourceSize + {600,70} + + twostar.png + + frame + {{1140,424},{130,89}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{130,89}} + sourceSize + {130,89} + + unLockMap.png + + frame + {{644,516},{472,416}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{472,416}} + sourceSize + {472,416} + + unfinish.png + + frame + {{246,2006},{40,31}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{40,31}} + sourceSize + {40,31} + + y270.png + + frame + {{1118,619},{273,125}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{273,125}} + sourceSize + {273,125} + + + metadata + + format + 2 + realTextureFileName + ui.png + size + {2048,2048} + smartupdate + $TexturePacker:SmartUpdate:313a0a48923798195cf4f423b8c2356c:1/1$ + textureFileName + ui.png + + + diff --git a/assets/static-res/shc/ui.plist.meta b/assets/static-res/shc/ui.plist.meta new file mode 100644 index 0000000..3af69af --- /dev/null +++ b/assets/static-res/shc/ui.plist.meta @@ -0,0 +1,4111 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "files": [ + ".json" + ], + "subMetas": { + "11007": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@11007", + "displayName": "", + "id": "11007", + "name": "tab2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1830, + "trimY": 1856, + "width": 206, + "height": 80, + "rawWidth": 206, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "36952": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@36952", + "displayName": "", + "id": "36952", + "name": "shopbg1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 2, + "width": 136, + "height": 48, + "rawWidth": 170, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "62714": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@62714", + "displayName": "", + "id": "62714", + "name": "Startbg", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 1364, + "width": 640, + "height": 1136, + "rawWidth": 640, + "rawHeight": 1136, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "73467": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@73467", + "displayName": "", + "id": "73467", + "name": "close", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1512, + "trimY": 1856, + "width": 66, + "height": 66, + "rawWidth": 66, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "76638": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@76638", + "displayName": "", + "id": "76638", + "name": "Startbutton", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1587, + "trimY": 560, + "width": 296, + "height": 122, + "rawWidth": 296, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "92433": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@92433", + "displayName": "", + "id": "92433", + "name": "unfinish", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 246, + "trimY": 2006, + "width": 40, + "height": 31, + "rawWidth": 40, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "95788": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@95788", + "displayName": "", + "id": "95788", + "name": "newSelect", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1394, + "trimY": 1933, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "af7d1": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@af7d1", + "displayName": "", + "id": "af7d1", + "name": "Copper", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 126, + "trimY": 2006, + "width": 40, + "height": 60, + "rawWidth": 40, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "602dc": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@602dc", + "displayName": "", + "id": "602dc", + "name": "DownButton1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1682, + "trimY": 1856, + "width": 100, + "height": 60, + "rawWidth": 100, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "53cb8": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@53cb8", + "displayName": "", + "id": "53cb8", + "name": "DownButton2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1580, + "trimY": 1856, + "width": 100, + "height": 60, + "rawWidth": 100, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9bb7d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9bb7d", + "displayName": "", + "id": "9bb7d", + "name": "Gold", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 2006, + "width": 40, + "height": 60, + "rawWidth": 40, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "05932": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@05932", + "displayName": "", + "id": "05932", + "name": "Introduction", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1364, + "trimY": 1856, + "width": 75, + "height": 45, + "rawWidth": 75, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1f4ec": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@1f4ec", + "displayName": "", + "id": "1f4ec", + "name": "Introduction1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 699, + "trimY": 2006, + "width": 61, + "height": 37, + "rawWidth": 75, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a6901": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@a6901", + "displayName": "", + "id": "a6901", + "name": "OverAchievement", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1282, + "trimY": 2, + "width": 556, + "height": 700, + "rawWidth": 556, + "rawHeight": 700, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f5c50": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@f5c50", + "displayName": "", + "id": "f5c50", + "name": "Silver", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2006, + "width": 40, + "height": 60, + "rawWidth": 40, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7ef2b": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@7ef2b", + "displayName": "", + "id": "7ef2b", + "name": "Startbutton1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1745, + "trimY": 560, + "width": 236, + "height": 98, + "rawWidth": 296, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c051b": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@c051b", + "displayName": "", + "id": "c051b", + "name": "TopLeftButton", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1813, + "trimY": 789, + "width": 160, + "height": 46, + "rawWidth": 160, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d8b54": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@d8b54", + "displayName": "", + "id": "d8b54", + "name": "TopRightButton", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1282, + "trimY": 1934, + "width": 110, + "height": 110, + "rawWidth": 110, + "rawHeight": 110, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b4fd4": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@b4fd4", + "displayName": "", + "id": "b4fd4", + "name": "TopRightButton1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1930, + "trimY": 1585, + "width": 88, + "height": 88, + "rawWidth": 110, + "rawHeight": 110, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b6395": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@b6395", + "displayName": "", + "id": "b6395", + "name": "Y1146", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1270, + "trimY": 560, + "width": 351, + "height": 151, + "rawWidth": 351, + "rawHeight": 151, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7a67d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@7a67d", + "displayName": "", + "id": "7a67d", + "name": "Y360", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1587, + "trimY": 858, + "width": 156, + "height": 52, + "rawWidth": 156, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "484b8": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@484b8", + "displayName": "", + "id": "484b8", + "name": "Y640", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1592, + "trimY": 914, + "width": 398, + "height": 185, + "rawWidth": 398, + "rawHeight": 185, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2a3c5": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@2a3c5", + "displayName": "", + "id": "2a3c5", + "name": "Y800", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1984, + "trimY": 80, + "width": 108, + "height": 61, + "rawWidth": 108, + "rawHeight": 61, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a4f69": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@a4f69", + "displayName": "", + "id": "a4f69", + "name": "Y914", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 565, + "width": 142, + "height": 52, + "rawWidth": 142, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5d980": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@5d980", + "displayName": "", + "id": "5d980", + "name": "achievement", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1364, + "trimY": 1332, + "width": 496, + "height": 522, + "rawWidth": 496, + "rawHeight": 522, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "624b8": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@624b8", + "displayName": "", + "id": "624b8", + "name": "achievementButton", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1505, + "trimY": 560, + "width": 350, + "height": 80, + "rawWidth": 350, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fbfdf": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@fbfdf", + "displayName": "", + "id": "fbfdf", + "name": "bigMap", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 640, + "height": 1360, + "rawWidth": 640, + "rawHeight": 1360, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d6509": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@d6509", + "displayName": "", + "id": "d6509", + "name": "buttonback", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1780, + "trimY": 1918, + "width": 88, + "height": 48, + "rawWidth": 88, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "bf8cf": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@bf8cf", + "displayName": "", + "id": "bf8cf", + "name": "buttonback1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 408, + "trimY": 2006, + "width": 70, + "height": 38, + "rawWidth": 88, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fd89e": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@fd89e", + "displayName": "", + "id": "fd89e", + "name": "buttonrestart", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1730, + "trimY": 1918, + "width": 118, + "height": 48, + "rawWidth": 118, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ea1e4": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@ea1e4", + "displayName": "", + "id": "ea1e4", + "name": "buttonrestart1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 312, + "trimY": 2006, + "width": 94, + "height": 38, + "rawWidth": 118, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f6fe3": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@f6fe3", + "displayName": "", + "id": "f6fe3", + "name": "buttonrestart2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1680, + "trimY": 1918, + "width": 118, + "height": 48, + "rawWidth": 118, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dc4a3": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@dc4a3", + "displayName": "", + "id": "dc4a3", + "name": "camera", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1454, + "width": 70, + "height": 60, + "rawWidth": 70, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "093dc": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@093dc", + "displayName": "", + "id": "093dc", + "name": "camera1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1989, + "trimY": 1218, + "width": 56, + "height": 48, + "rawWidth": 70, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "16afa": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@16afa", + "displayName": "", + "id": "16afa", + "name": "close1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1992, + "trimY": 914, + "width": 52, + "height": 52, + "rawWidth": 66, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9980d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9980d", + "displayName": "", + "id": "9980d", + "name": "coin", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1992, + "trimY": 968, + "width": 52, + "height": 44, + "rawWidth": 52, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8a792": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@8a792", + "displayName": "", + "id": "8a792", + "name": "downButton11", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1996, + "trimY": 1675, + "width": 80, + "height": 48, + "rawWidth": 100, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5fd95": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@5fd95", + "displayName": "", + "id": "5fd95", + "name": "downButton21", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1712, + "width": 80, + "height": 48, + "rawWidth": 100, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "37acd": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@37acd", + "displayName": "", + "id": "37acd", + "name": "finish", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 279, + "trimY": 2006, + "width": 40, + "height": 31, + "rawWidth": 40, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "83d37": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@83d37", + "displayName": "", + "id": "83d37", + "name": "foxcountry", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1936, + "trimY": 1292, + "width": 103, + "height": 87, + "rawWidth": 103, + "rawHeight": 87, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a705d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@a705d", + "displayName": "", + "id": "a705d", + "name": "goal", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 480, + "trimY": 2006, + "width": 38, + "height": 48, + "rawWidth": 38, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1fdf3": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@1fdf3", + "displayName": "", + "id": "1fdf3", + "name": "goalbg", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1423, + "trimY": 560, + "width": 350, + "height": 80, + "rawWidth": 350, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "122b1": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@122b1", + "displayName": "", + "id": "122b1", + "name": "home", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1392, + "width": 70, + "height": 60, + "rawWidth": 70, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ceec3": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@ceec3", + "displayName": "", + "id": "ceec3", + "name": "home1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1990, + "trimY": 1168, + "width": 56, + "height": 48, + "rawWidth": 70, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "66e04": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@66e04", + "displayName": "", + "id": "66e04", + "name": "line", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 762, + "trimY": 2014, + "width": 518, + "height": 2, + "rawWidth": 518, + "rawHeight": 2, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "d1068": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@d1068", + "displayName": "", + "id": "d1068", + "name": "lock", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1516, + "width": 66, + "height": 80, + "rawWidth": 66, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "57b16": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@57b16", + "displayName": "", + "id": "57b16", + "name": "lockedMap", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 934, + "width": 472, + "height": 416, + "rawWidth": 472, + "rawHeight": 416, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9e5d2": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9e5d2", + "displayName": "", + "id": "9e5d2", + "name": "logo", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 52, + "width": 256, + "height": 131, + "rawWidth": 256, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a231c": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@a231c", + "displayName": "", + "id": "a231c", + "name": "more", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1496, + "trimY": 1932, + "width": 100, + "height": 60, + "rawWidth": 100, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8918a": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@8918a", + "displayName": "", + "id": "8918a", + "name": "more1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1914, + "trimY": 1675, + "width": 80, + "height": 48, + "rawWidth": 100, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "adafd": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@adafd", + "displayName": "", + "id": "adafd", + "name": "newArrow", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1984, + "trimY": 2, + "width": 62, + "height": 76, + "rawWidth": 62, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5d85f": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@5d85f", + "displayName": "", + "id": "5d85f", + "name": "newTop", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1934, + "trimY": 1483, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9500d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9500d", + "displayName": "", + "id": "9500d", + "name": "newtips", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 1332, + "width": 600, + "height": 150, + "rawWidth": 600, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "57ac1": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@57ac1", + "displayName": "", + "id": "57ac1", + "name": "nostar", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1411, + "trimY": 1856, + "width": 99, + "height": 74, + "rawWidth": 99, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "5036f": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@5036f", + "displayName": "", + "id": "5036f", + "name": "numberbg copy", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1745, + "trimY": 855, + "width": 220, + "height": 55, + "rawWidth": 220, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "a51b8": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@a51b8", + "displayName": "", + "id": "a51b8", + "name": "numberbg", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1745, + "trimY": 660, + "width": 220, + "height": 65, + "rawWidth": 220, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4ef77": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@4ef77", + "displayName": "", + "id": "4ef77", + "name": "onestar", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 1934, + "width": 103, + "height": 75, + "rawWidth": 103, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6e256": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@6e256", + "displayName": "", + "id": "6e256", + "name": "packClose", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1101, + "width": 126, + "height": 90, + "rawWidth": 126, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8f14d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@8f14d", + "displayName": "", + "id": "8f14d", + "name": "packOpen", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1711, + "trimY": 727, + "width": 126, + "height": 100, + "rawWidth": 126, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f62c8": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@f62c8", + "displayName": "", + "id": "f62c8", + "name": "rank1", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1984, + "trimY": 552, + "width": 360, + "height": 60, + "rawWidth": 360, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e7edf": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@e7edf", + "displayName": "", + "id": "e7edf", + "name": "rank2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1984, + "trimY": 190, + "width": 360, + "height": 60, + "rawWidth": 360, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b5cc3": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@b5cc3", + "displayName": "", + "id": "b5cc3", + "name": "scroller", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 762, + "trimY": 2006, + "width": 6, + "height": 60, + "rawWidth": 6, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ef7de": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@ef7de", + "displayName": "", + "id": "ef7de", + "name": "selected", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1558, + "trimY": 1924, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f6792": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@f6792", + "displayName": "", + "id": "f6792", + "name": "selected1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1934, + "trimY": 1381, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "cbb5e": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@cbb5e", + "displayName": "", + "id": "cbb5e", + "name": "set", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1330, + "width": 70, + "height": 60, + "rawWidth": 70, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e0d81": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@e0d81", + "displayName": "", + "id": "e0d81", + "name": "set1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1990, + "trimY": 1118, + "width": 56, + "height": 48, + "rawWidth": 70, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e5201": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@e5201", + "displayName": "", + "id": "e5201", + "name": "settingBg", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 914, + "width": 416, + "height": 472, + "rawWidth": 416, + "rawHeight": 472, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b2fd6": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@b2fd6", + "displayName": "", + "id": "b2fd6", + "name": "settingButton", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1813, + "trimY": 727, + "width": 160, + "height": 60, + "rawWidth": 160, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1ff75": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@1ff75", + "displayName": "", + "id": "1ff75", + "name": "settingButton1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 515, + "width": 128, + "height": 48, + "rawWidth": 160, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fc09d": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@fc09d", + "displayName": "", + "id": "fc09d", + "name": "shop", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 188, + "trimY": 2006, + "width": 56, + "height": 40, + "rawWidth": 56, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "41ca8": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@41ca8", + "displayName": "", + "id": "41ca8", + "name": "shopbg", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1764, + "trimY": 1268, + "width": 170, + "height": 60, + "rawWidth": 170, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "babef": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@babef", + "displayName": "", + "id": "babef", + "name": "shopbg2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1592, + "trimY": 1268, + "width": 170, + "height": 60, + "rawWidth": 170, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "de947": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@de947", + "displayName": "", + "id": "de947", + "name": "star11", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1660, + "width": 50, + "height": 50, + "rawWidth": 50, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2dde2": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@2dde2", + "displayName": "", + "id": "2dde2", + "name": "star22", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1936, + "trimY": 1240, + "width": 50, + "height": 50, + "rawWidth": 50, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e7632": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@e7632", + "displayName": "", + "id": "e7632", + "name": "start", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1193, + "width": 125, + "height": 45, + "rawWidth": 125, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3beae": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@3beae", + "displayName": "", + "id": "3beae", + "name": "start1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 530, + "trimY": 2006, + "width": 101, + "height": 37, + "rawWidth": 125, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8c33b": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@8c33b", + "displayName": "", + "id": "8c33b", + "name": "starx", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1992, + "trimY": 1066, + "width": 51, + "height": 50, + "rawWidth": 51, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e9321": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@e9321", + "displayName": "", + "id": "e9321", + "name": "starx1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1992, + "trimY": 1014, + "width": 51, + "height": 50, + "rawWidth": 51, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98f95": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@98f95", + "displayName": "", + "id": "98f95", + "name": "tab1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1830, + "trimY": 1938, + "width": 206, + "height": 80, + "rawWidth": 206, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4eb68": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@4eb68", + "displayName": "", + "id": "4eb68", + "name": "tabnew", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 2, + "width": 494, + "height": 512, + "rawWidth": 494, + "rawHeight": 512, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6fdd9": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@6fdd9", + "displayName": "", + "id": "6fdd9", + "name": "take", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1862, + "trimY": 1598, + "width": 60, + "height": 60, + "rawWidth": 60, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9d6bc": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9d6bc", + "displayName": "", + "id": "9d6bc", + "name": "take0", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1912, + "trimY": 1772, + "width": 80, + "height": 45, + "rawWidth": 80, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9bc2f": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@9bc2f", + "displayName": "", + "id": "9bc2f", + "name": "take1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 633, + "trimY": 2006, + "width": 64, + "height": 37, + "rawWidth": 80, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "983f9": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@983f9", + "displayName": "", + "id": "983f9", + "name": "take2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1912, + "trimY": 1725, + "width": 80, + "height": 45, + "rawWidth": 80, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b23f3": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@b23f3", + "displayName": "", + "id": "b23f3", + "name": "threestar", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 310, + "width": 130, + "height": 112, + "rawWidth": 130, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e9d12": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@e9d12", + "displayName": "", + "id": "e9d12", + "name": "tips", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1292, + "trimY": 1332, + "width": 600, + "height": 70, + "rawWidth": 600, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ac3e4": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@ac3e4", + "displayName": "", + "id": "ac3e4", + "name": "twostar", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1140, + "trimY": 424, + "width": 130, + "height": 89, + "rawWidth": 130, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "690c2": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@690c2", + "displayName": "", + "id": "690c2", + "name": "unLockMap", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 644, + "trimY": 516, + "width": 472, + "height": 416, + "rawWidth": 472, + "rawHeight": 416, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ca344": { + "importer": "sprite-frame", + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631@ca344", + "displayName": "", + "id": "ca344", + "name": "y270", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 619, + "width": 273, + "height": 125, + "rawWidth": 273, + "rawHeight": 125, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "atlasUuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "ui.png", + "format": 2, + "uuid": "110ce875-0c65-4afa-80f5-6e5d6fcd3631", + "textureUuid": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a" + } +} diff --git a/assets/static-res/shc/ui.png b/assets/static-res/shc/ui.png new file mode 100644 index 0000000..db94c02 Binary files /dev/null and b/assets/static-res/shc/ui.png differ diff --git a/assets/static-res/shc/ui.png.meta b/assets/static-res/shc/ui.png.meta new file mode 100644 index 0000000..644cde1 --- /dev/null +++ b/assets/static-res/shc/ui.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f54e6b79-869a-4824-b992-5082ec68fecc", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a", + "displayName": "ui", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "f54e6b79-869a-4824-b992-5082ec68fecc", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f54e6b79-869a-4824-b992-5082ec68fecc@6c48a" + } +} diff --git a/assets/static-res/shc/ui1.plist b/assets/static-res/shc/ui1.plist new file mode 100644 index 0000000..6c78614 --- /dev/null +++ b/assets/static-res/shc/ui1.plist @@ -0,0 +1,334 @@ + + + + + frames + + AchievementNot.png + + frame + {{1056,1960},{428,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{428,80}} + sourceSize + {428,80} + + NoSilver.png + + frame + {{1188,213},{40,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{40,60}} + sourceSize + {40,60} + + achievementButtonNew.png + + frame + {{626,1960},{428,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{428,80}} + sourceSize + {428,80} + + achievementNew.png + + frame + {{2,1446},{576,622}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{576,622}} + sourceSize + {576,622} + + comtips.png + + frame + {{1122,213},{56,64}} + offset + {0,0} + rotated + + sourceColorRect + {{4,0},{56,64}} + sourceSize + {64,64} + + newberbg.png + + frame + {{1122,2},{220,65}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{220,65}} + sourceSize + {220,65} + + objecta1.png + + frame + {{1122,141},{200,70}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{200,70}} + sourceSize + {200,70} + + objecta2.png + + frame + {{1122,69},{200,70}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{200,70}} + sourceSize + {200,70} + + objectb1.png + + frame + {{1486,331},{440,70}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{440,70}} + sourceSize + {440,70} + + objectb2.png + + frame + {{1486,259},{440,70}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{440,70}} + sourceSize + {440,70} + + resore.png + + frame + {{1344,56},{72,72}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{72,72}} + sourceSize + {72,72} + + scoregold.png + + frame + {{1344,2},{52,78}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{52,78}} + sourceSize + {52,78} + + shopNew.png + + frame + {{2,2},{636,740}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{636,740}} + sourceSize + {636,740} + + step1.png + + frame + {{1188,255},{32,30}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{32,30}} + sourceSize + {32,30} + + step2.png + + frame + {{1418,64},{70,64}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{70,64}} + sourceSize + {70,64} + + stepAdd.png + + frame + {{1250,213},{48,48}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{48,48}} + sourceSize + {48,48} + + tabnew.png + + frame + {{626,1446},{494,512}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{494,512}} + sourceSize + {494,512} + + tabnew1.png + + frame + {{1948,246},{242,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{242,80}} + sourceSize + {242,80} + + tabnew2.png + + frame + {{1948,2},{242,80}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{242,80}} + sourceSize + {242,80} + + take.png + + frame + {{1424,2},{60,60}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{60,60}} + sourceSize + {60,60} + + targetAndAchievent.png + + frame + {{1486,2},{460,255}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{460,255}} + sourceSize + {460,255} + + totalCom.png + + frame + {{2,744},{635,700}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{635,700}} + sourceSize + {635,700} + + unlockbutton.png + + frame + {{1324,136},{160,45}} + offset + {0,0} + rotated + + sourceColorRect + {{0,0},{160,45}} + sourceSize + {160,45} + + unlockbutton1.png + + frame + {{1324,183},{144,41}} + offset + {0,0} + rotated + + sourceColorRect + {{8,2},{144,41}} + sourceSize + {160,45} + + + metadata + + format + 2 + realTextureFileName + ui1.png + size + {2048,2048} + smartupdate + $TexturePacker:SmartUpdate:fb2e3e6b89c86e9d5c50fa06f466db1d:1/1$ + textureFileName + ui1.png + + + diff --git a/assets/static-res/shc/ui1.plist.meta b/assets/static-res/shc/ui1.plist.meta new file mode 100644 index 0000000..c2a1678 --- /dev/null +++ b/assets/static-res/shc/ui1.plist.meta @@ -0,0 +1,1121 @@ +{ + "ver": "1.0.8", + "importer": "sprite-atlas", + "imported": true, + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "files": [ + ".json" + ], + "subMetas": { + "61479": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@61479", + "displayName": "", + "id": "61479", + "name": "scoregold", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1344, + "trimY": 2, + "width": 52, + "height": 78, + "rawWidth": 52, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "b52d6": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@b52d6", + "displayName": "", + "id": "b52d6", + "name": "AchievementNot", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1056, + "trimY": 1960, + "width": 428, + "height": 80, + "rawWidth": 428, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "ebb3e": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@ebb3e", + "displayName": "", + "id": "ebb3e", + "name": "NoSilver", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1188, + "trimY": 213, + "width": 40, + "height": 60, + "rawWidth": 40, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "31c85": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@31c85", + "displayName": "", + "id": "31c85", + "name": "achievementButtonNew", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 626, + "trimY": 1960, + "width": 428, + "height": 80, + "rawWidth": 428, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "e87d5": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@e87d5", + "displayName": "", + "id": "e87d5", + "name": "achievementNew", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 1446, + "width": 576, + "height": 622, + "rawWidth": 576, + "rawHeight": 622, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "dfae6": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@dfae6", + "displayName": "", + "id": "dfae6", + "name": "comtips", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1122, + "trimY": 213, + "width": 56, + "height": 64, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "8a487": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@8a487", + "displayName": "", + "id": "8a487", + "name": "newberbg", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1122, + "trimY": 2, + "width": 220, + "height": 65, + "rawWidth": 220, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "364c6": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@364c6", + "displayName": "", + "id": "364c6", + "name": "objecta1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1122, + "trimY": 141, + "width": 200, + "height": 70, + "rawWidth": 200, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c8207": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@c8207", + "displayName": "", + "id": "c8207", + "name": "objecta2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1122, + "trimY": 69, + "width": 200, + "height": 70, + "rawWidth": 200, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "98f85": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@98f85", + "displayName": "", + "id": "98f85", + "name": "objectb1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1486, + "trimY": 331, + "width": 440, + "height": 70, + "rawWidth": 440, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "810dd": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@810dd", + "displayName": "", + "id": "810dd", + "name": "objectb2", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1486, + "trimY": 259, + "width": 440, + "height": 70, + "rawWidth": 440, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7f17e": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@7f17e", + "displayName": "", + "id": "7f17e", + "name": "resore", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1344, + "trimY": 56, + "width": 72, + "height": 72, + "rawWidth": 72, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "7e349": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@7e349", + "displayName": "", + "id": "7e349", + "name": "shopNew", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 636, + "height": 740, + "rawWidth": 636, + "rawHeight": 740, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "2b115": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@2b115", + "displayName": "", + "id": "2b115", + "name": "step1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1188, + "trimY": 255, + "width": 32, + "height": 30, + "rawWidth": 32, + "rawHeight": 30, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "947aa": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@947aa", + "displayName": "", + "id": "947aa", + "name": "step2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1418, + "trimY": 64, + "width": 70, + "height": 64, + "rawWidth": 70, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "23c11": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@23c11", + "displayName": "", + "id": "23c11", + "name": "stepAdd", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1250, + "trimY": 213, + "width": 48, + "height": 48, + "rawWidth": 48, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "4eb68": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@4eb68", + "displayName": "", + "id": "4eb68", + "name": "tabnew", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 626, + "trimY": 1446, + "width": 494, + "height": 512, + "rawWidth": 494, + "rawHeight": 512, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "fd39c": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@fd39c", + "displayName": "", + "id": "fd39c", + "name": "tabnew1", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1948, + "trimY": 246, + "width": 242, + "height": 80, + "rawWidth": 242, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "c2e95": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@c2e95", + "displayName": "", + "id": "c2e95", + "name": "tabnew2", + "userData": { + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1948, + "trimY": 2, + "width": 242, + "height": 80, + "rawWidth": 242, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "6fdd9": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@6fdd9", + "displayName": "", + "id": "6fdd9", + "name": "take", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1424, + "trimY": 2, + "width": 60, + "height": 60, + "rawWidth": 60, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "15ef9": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@15ef9", + "displayName": "", + "id": "15ef9", + "name": "targetAndAchievent", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1486, + "trimY": 2, + "width": 460, + "height": 255, + "rawWidth": 460, + "rawHeight": 255, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "3f0fb": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@3f0fb", + "displayName": "", + "id": "3f0fb", + "name": "totalCom", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 744, + "width": 635, + "height": 700, + "rawWidth": 635, + "rawHeight": 700, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "1c668": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@1c668", + "displayName": "", + "id": "1c668", + "name": "unlockbutton", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1324, + "trimY": 136, + "width": 160, + "height": 45, + "rawWidth": 160, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "9db4b": { + "importer": "sprite-frame", + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2@9db4b", + "displayName": "", + "id": "9db4b", + "name": "unlockbutton1", + "userData": { + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1324, + "trimY": 183, + "width": 144, + "height": 41, + "rawWidth": 160, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [], + "indexes": [], + "uv": [], + "nuv": [], + "minPos": [], + "maxPos": [] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "atlasUuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "trimType": "auto" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "atlasTextureName": "ui1.png", + "format": 2, + "uuid": "af54604f-4cd4-492c-bec0-0d747ed4ddd2", + "textureUuid": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a" + } +} diff --git a/assets/static-res/shc/ui1.png b/assets/static-res/shc/ui1.png new file mode 100644 index 0000000..e41c89f Binary files /dev/null and b/assets/static-res/shc/ui1.png differ diff --git a/assets/static-res/shc/ui1.png.meta b/assets/static-res/shc/ui1.png.meta new file mode 100644 index 0000000..2ec2e5a --- /dev/null +++ b/assets/static-res/shc/ui1.png.meta @@ -0,0 +1,42 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "97430929-99dc-4c9f-af30-5b48b98f98fa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a", + "displayName": "ui1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "97430929-99dc-4c9f-af30-5b48b98f98fa", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "texture", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "97430929-99dc-4c9f-af30-5b48b98f98fa@6c48a" + } +} diff --git a/eslint.config.mts b/eslint.config.mts new file mode 100644 index 0000000..73e9287 --- /dev/null +++ b/eslint.config.mts @@ -0,0 +1,66 @@ +import js from "@eslint/js"; +import globals from "globals"; +import tseslint from "typescript-eslint"; +import { defineConfig } from "eslint/config"; +import unusedImports from "eslint-plugin-unused-imports"; +import unicorn from "eslint-plugin-unicorn"; + +export default defineConfig([ + // 全局忽略声明文件 + { ignores: ["**/*.d.ts"] }, + { + files: ["**/*.ts"], + plugins: { js, ...(unusedImports ? { "unused-imports": unusedImports } : {}), unicorn }, + extends: ["js/recommended"], + languageOptions: { globals: globals.browser }, + rules: { + // 当插件可用时,启用自动清理未使用的 import;否则回退到 TS 的未使用变量规则 + ...(unusedImports + ? { + "unused-imports/no-unused-imports": "error", + "unused-imports/no-unused-vars": [ + "warn", + { + vars: "all", + varsIgnorePattern: "^_", + args: "after-used", + argsIgnorePattern: "^_", + ignoreRestSiblings: true, + }, + ], + "@typescript-eslint/no-unused-vars": "off", + } + : { + "@typescript-eslint/no-unused-vars": [ + "warn", + { + vars: "all", + varsIgnorePattern: "^_", + args: "after-used", + argsIgnorePattern: "^_", + ignoreRestSiblings: true, + }, + ], + }), + // 统一 try/catch 的错误变量名为 err + "unicorn/catch-error-name": ["error", { name: "err" }], + // 未重新赋值的变量使用 const + "prefer-const": [ + "error", + { + destructuring: "all", + }, + ], + // 禁用 var 声明 + "no-var": "error", + }, + }, + ...tseslint.configs.recommended.map((cfg) => ({ ...cfg, files: ["**/*.ts"] })), + // 在所有 TS 推荐配置之后,显式关闭冲突的未使用变量规则 + { + files: ["**/*.ts"], + rules: { + "@typescript-eslint/no-unused-vars": "off", + }, + }, +]); diff --git a/excels/PetPartConfig.xlsx b/excels/PetPartConfig.xlsx index 386a400..4933b3f 100644 Binary files a/excels/PetPartConfig.xlsx and b/excels/PetPartConfig.xlsx differ diff --git a/extensions/max-studio/assets/max-studio/core/decorators/Performance.ts b/extensions/max-studio/assets/max-studio/core/decorators/Performance.ts index f65328f..725f178 100644 --- a/extensions/max-studio/assets/max-studio/core/decorators/Performance.ts +++ b/extensions/max-studio/assets/max-studio/core/decorators/Performance.ts @@ -127,7 +127,7 @@ export function advancedThrottle(delay: number, options: { let lastCallTime = 0; let lastInvokeTime = 0; let timeoutId: any = null; - let maxTimeoutId: any = null; + const maxTimeoutId: any = null; let lastArgs: any[] = []; let lastThis: any = null; let result: any; diff --git a/extensions/max-studio/assets/max-studio/core/event/EventManager.ts b/extensions/max-studio/assets/max-studio/core/event/EventManager.ts index cb5db9e..b0bf5df 100644 --- a/extensions/max-studio/assets/max-studio/core/event/EventManager.ts +++ b/extensions/max-studio/assets/max-studio/core/event/EventManager.ts @@ -59,9 +59,7 @@ export class EventManager extends Singleton { } // 使用 some 提前终止循环,一旦发现重复就停止查找 - const isDuplicate = eds.some( - (bin) => bin.listener === listener && bin.obj === obj, - ); + const isDuplicate = eds.some((bin) => bin.listener === listener && bin.obj === obj); if (isDuplicate) { LogUtils.warn(`名为【${event}】的事件重复注册侦听器`); return; // 避免重复添加 @@ -102,9 +100,7 @@ export class EventManager extends Singleton { return; } - const index = eds.findIndex( - (bin) => bin.listener === listener && bin.obj === obj, - ); + const index = eds.findIndex((bin) => bin.listener === listener && bin.obj === obj); if (index !== -1) { eds.splice(index, 1); } @@ -129,9 +125,7 @@ export class EventManager extends Singleton { if (isValid(eventBin.obj)) { eventBin.listener.call(eventBin.obj, ...args); } else { - LogUtils.warn( - `事件【${event}】的侦听器对象已被销毁,无法触发`, - ); + LogUtils.warn(`事件【${event}】的侦听器对象已被销毁,无法触发`); // 注意:这里可能会导致数组长度变化,但因为是副本所以不影响循环 this.off(event, eventBin.listener, eventBin.obj); } diff --git a/extensions/max-studio/assets/max-studio/core/guide/GuideConfigManager.ts b/extensions/max-studio/assets/max-studio/core/guide/GuideConfigManager.ts index adc1fee..23e8f9a 100644 --- a/extensions/max-studio/assets/max-studio/core/guide/GuideConfigManager.ts +++ b/extensions/max-studio/assets/max-studio/core/guide/GuideConfigManager.ts @@ -1,8 +1,8 @@ import { IGuideConfig } from "./GuideData"; -import { ResManager } from "../res/ResManager"; import { JsonAsset } from "cc"; import { Singleton } from "../Singleton"; import LogUtils from "../utils/LogUtils"; +import ResManager from "../res/ResManager"; const TAG = "GuideConfigManager"; @@ -23,10 +23,10 @@ export class GuideConfigManager extends Singleton { private async loadDefaultConfigs() { // 这里可以加载默认的引导配置 - const asset = await ResManager.getInstance().loadAsset( - "guide-config", - JsonAsset, - ); + const asset = await ResManager.getInstance().loadAsset({ + path: "guide-config", + type: JsonAsset, + }); if (asset?.json) { for (const key in asset.json) { if (Object.prototype.hasOwnProperty.call(asset.json, key)) { @@ -133,9 +133,7 @@ export class GuideConfigManager extends Singleton { * @returns 启用的引导配置列表 */ public getEnabledGuideConfigs(): IGuideConfig[] { - return Array.from(this._configs.values()).filter( - (config) => config.enabled !== false, - ); + return Array.from(this._configs.values()).filter((config) => config.enabled !== false); } /** @@ -201,20 +199,14 @@ export class GuideConfigManager extends Singleton { // 检查步骤引用 for (const step of config.steps) { if (step.nextStepId && !stepIds.has(step.nextStepId)) { - LogUtils.error( - TAG, - `步骤 ${step.id} 的下一步骤ID不存在: ${step.nextStepId}`, - ); + LogUtils.error(TAG, `步骤 ${step.id} 的下一步骤ID不存在: ${step.nextStepId}`); return false; } if (step.branches) { for (const branch of step.branches) { if (!stepIds.has(branch.nextStepId)) { - LogUtils.error( - TAG, - `步骤 ${step.id} 的分枝下一步骤ID不存在: ${branch.nextStepId}`, - ); + LogUtils.error(TAG, `步骤 ${step.id} 的分枝下一步骤ID不存在: ${branch.nextStepId}`); return false; } } @@ -269,10 +261,7 @@ export class GuideConfigManager extends Singleton { } else if (data.configs) { // 多个配置 const successCount = this.addGuideConfigs(data.configs); - LogUtils.info( - TAG, - `导入配置成功: ${successCount}/${data.configs.length}`, - ); + LogUtils.info(TAG, `导入配置成功: ${successCount}/${data.configs.length}`); return successCount > 0; } else { LogUtils.error(TAG, "JSON格式不正确"); diff --git a/extensions/max-studio/assets/max-studio/core/guide/GuideManager.ts b/extensions/max-studio/assets/max-studio/core/guide/GuideManager.ts index b89e138..7c5a51e 100644 --- a/extensions/max-studio/assets/max-studio/core/guide/GuideManager.ts +++ b/extensions/max-studio/assets/max-studio/core/guide/GuideManager.ts @@ -16,7 +16,7 @@ import UIManager from "../ui/UIManager"; import { UIType } from "../ui/UIDecorator"; import { GuideTargetComponent } from "./GuideTargetComponent"; import StorageManager, { GUIDE_HISTORY_KEY } from "../storage/StorageManager"; -import { Singleton, singleton } from "../Singleton"; +import { Singleton } from "../Singleton"; import { EventManager } from "../event/EventManager"; import LogUtils from "../utils/LogUtils"; diff --git a/extensions/max-studio/assets/max-studio/core/max.d.ts b/extensions/max-studio/assets/max-studio/core/max.d.ts index d37e08e..4f8603a 100644 --- a/extensions/max-studio/assets/max-studio/core/max.d.ts +++ b/extensions/max-studio/assets/max-studio/core/max.d.ts @@ -1,5 +1,19 @@ declare module "cc" { interface SpriteFrame { remoteUrl?: string; + lastAccessTime?: number; + } + + interface Asset { + cacheKey?: string; + lastAccessTime?: number; + } + + namespace sp { + namespace spine { + interface Slot { + texture?: Texture2D; + } + } } } diff --git a/extensions/max-studio/assets/max-studio/core/net/HttpClient.ts b/extensions/max-studio/assets/max-studio/core/net/HttpClient.ts index e3d3c66..7dae2f3 100644 --- a/extensions/max-studio/assets/max-studio/core/net/HttpClient.ts +++ b/extensions/max-studio/assets/max-studio/core/net/HttpClient.ts @@ -1,6 +1,6 @@ import { HttpError, HttpResponse, IResponseData } from "./HttpRequest"; import LogUtils from "../utils/LogUtils"; -import { HttpMethod, NetworkConfig } from "./Types"; +import { HttpMethod, IHttpConfig } from "./Types"; import { StringUtils } from "../utils/StringUtils"; import { Toast } from "../ui/default/DefaultToast"; @@ -20,12 +20,12 @@ export default class HttpClient { private readonly maxRetries: number = 3; private token: string = ""; - constructor(cfg: NetworkConfig) { + constructor(cfg: IHttpConfig) { // 设置默认请求头 this.headers.set("Content-Type", "application/json"); - this.rootUrl = cfg.httpRootUrl; - this.timeout = cfg.defaultTimeout; - this.maxRetries = cfg.defaultRetryCount; + this.rootUrl = cfg.url; + this.timeout = cfg.timeout || 30; + this.maxRetries = cfg.retryCount || 3; } public setHeader(key: string, value: string) { @@ -37,15 +37,10 @@ export default class HttpClient { method: HttpMethod, data: unknown, callback: (response: HttpResponse) => void = null, - headers?: Map + headers?: Map, ): Promise> { // 生成请求签名,包含 URL、方法、数据和头部信息 - const requestSignature = this.generateRequestSignature( - url, - method, - data, - headers - ); + const requestSignature = this.generateRequestSignature(url, method, data, headers); // 检查是否已有相同的请求在进行中 const reqInfo = this.requestQueues.get(requestSignature); @@ -63,13 +58,7 @@ export default class HttpClient { const abortController = new AbortController(); const callbacks = [callback]; - const responsePromise = this.executeRequest( - url, - method, - data, - headers, - abortController - ); + const responsePromise = this.executeRequest(url, method, data, headers, abortController); // 将请求添加到队列 this.requestQueues.set(requestSignature, { @@ -88,13 +77,8 @@ export default class HttpClient { if (tempCallback) { tempCallback(response); } - } catch (callError) { - LogUtils.error( - TAG, - "回调函数执行失败", - callError.message, - callError.stack - ); + } catch (err) { + LogUtils.error(TAG, "回调函数执行失败", err.message, err.stack); } } this.requestQueues.delete(requestSignature); @@ -113,13 +97,8 @@ export default class HttpClient { if (tempCallback) { tempCallback(errorResponse); } - } catch (callError) { - LogUtils.error( - TAG, - "回调函数执行失败", - callError.message, - callError.stack - ); + } catch (err_) { + LogUtils.error(TAG, "回调函数执行失败", err_.message, err_.stack); } } this.requestQueues.delete(requestSignature); @@ -135,7 +114,7 @@ export default class HttpClient { data: unknown, headers?: Map, abortController?: AbortController, - retryCount: number = 0 + retryCount: number = 0, ): Promise> { try { // 合并请求头 @@ -184,17 +163,11 @@ export default class HttpClient { }); // 执行请求 - const response = await Promise.race([ - fetch(url, requestConfig), - timeoutPromise, - ]); + const response = await Promise.race([fetch(url, requestConfig), timeoutPromise]); // 检查响应状态 if (!response.ok) { - const error = - response.status >= 500 - ? new Error("Server error") - : new Error(`HTTP ${response.status}`); + const error = response.status >= 500 ? new Error("Server error") : new Error(`HTTP ${response.status}`); throw error; } @@ -211,19 +184,12 @@ export default class HttpClient { message: err.message, }; } - if ( - !responseData.success && - !StringUtils.isEmpty(responseData.message) - ) { + if (!responseData.success && !StringUtils.isEmpty(responseData.message)) { Toast.show(responseData.message); } if (response.headers.get("Authorization")?.startsWith("Bearer ")) { - LogUtils.log( - "HttpClient", - "获取到新的token", - response.headers.get("Authorization") - ); + LogUtils.log("HttpClient", "获取到新的token", response.headers.get("Authorization")); this.token = response.headers.get("Authorization"); } @@ -239,19 +205,8 @@ export default class HttpClient { } if (retryCount < this.maxRetries) { - LogUtils.info( - "HttpClient", - `重试请求 ${retryCount + 1}/${this.maxRetries}`, - url - ); - return this.executeRequest( - url, - method, - data, - headers, - abortController, - retryCount + 1 - ); + LogUtils.info("HttpClient", `重试请求 ${retryCount + 1}/${this.maxRetries}`, url); + return this.executeRequest(url, method, data, headers, abortController, retryCount + 1); } let errMessage = HttpError.UNKNOWN_ERROR; @@ -273,18 +228,8 @@ export default class HttpClient { /** * 取消指定签名的请求 */ - public cancelRequest( - url: string, - method: "GET" | "POST", - data: any, - headers?: Map - ): boolean { - const requestSignature = this.generateRequestSignature( - url, - method, - data, - headers - ); + public cancelRequest(url: string, method: "GET" | "POST", data: any, headers?: Map): boolean { + const requestSignature = this.generateRequestSignature(url, method, data, headers); const queue = this.requestQueues.get(requestSignature); if (queue) { @@ -341,30 +286,15 @@ export default class HttpClient { /** * 检查指定请求是否正在进行中 */ - public isRequestPending( - url: string, - method: "GET" | "POST", - data: any, - headers?: Map - ): boolean { - const requestSignature = this.generateRequestSignature( - url, - method, - data, - headers - ); + public isRequestPending(url: string, method: "GET" | "POST", data: any, headers?: Map): boolean { + const requestSignature = this.generateRequestSignature(url, method, data, headers); return this.requestQueues.has(requestSignature); } /** * 生成请求签名,用于识别相同的请求 */ - private generateRequestSignature( - url: string, - method: string, - data: any, - headers?: Map - ): string { + private generateRequestSignature(url: string, method: string, data: any, headers?: Map): string { // 确保 URL 是完整的 if (!url.toLowerCase().startsWith("http")) { url = this.rootUrl + url; diff --git a/extensions/max-studio/assets/max-studio/core/net/NetworkManager.ts b/extensions/max-studio/assets/max-studio/core/net/NetworkManager.ts index cbe0e51..0f858de 100644 --- a/extensions/max-studio/assets/max-studio/core/net/NetworkManager.ts +++ b/extensions/max-studio/assets/max-studio/core/net/NetworkManager.ts @@ -1,37 +1,39 @@ import LogUtils from "../utils/LogUtils"; import { WebSocketClient } from "./WebSocketClient"; -import { SerializerManager } from "./Serializer"; -import { WebSocketConfig } from "./Types"; +import { INetworkConfig } from "./Types"; import { singleton, Singleton } from "../Singleton"; -import { ResManager } from "../res/ResManager"; import { JsonAsset } from "cc"; import { StringUtils } from "../utils/StringUtils"; import HttpClient from "./HttpClient"; +import ResManager from "../res/ResManager"; const TAG = "Network"; /** * 网络管理器 */ -@singleton({auto: true}) +@singleton({ auto: true }) export class NetworkManager extends Singleton { private httpClient: HttpClient; - private webSocketClients = new Map(); - private serializerManager: SerializerManager; + private wsClient: WebSocketClient; + private config: INetworkConfig; protected async onInit() { LogUtils.info(TAG, "初始化网络管理器"); - this.serializerManager = new SerializerManager(); - const asset = await ResManager.getInstance().loadAsset( - "net-config", - JsonAsset, - ); + const { err, asset } = await ResManager.getInstance().loadAsset({ + path: "net-config", + type: JsonAsset, + }); if (StringUtils.isEmpty(asset?.json)) { LogUtils.error(TAG, "加载网络配置失败"); return; } + if (err) { + LogUtils.error(TAG, "加载网络配置失败", err); + return; + } - this.httpClient = new HttpClient(asset.json); + this.config = asset.json; LogUtils.info(TAG, "网络管理器初始化完成"); } @@ -40,50 +42,28 @@ export class NetworkManager extends Singleton { * 获取HTTP客户端 */ public getHttpClient(): HttpClient { - return this.httpClient; - } - - /** - * 创建WebSocket客户端 - */ - public createWebSocketClient( - name: string, - config: WebSocketConfig, - ): WebSocketClient { - if (this.webSocketClients.has(name)) { - LogUtils.warn(TAG, `WebSocket客户端已存在: ${name}`); - return this.webSocketClients.get(name)!; + if (!this.httpClient) { + this.httpClient = new HttpClient(this.config.httpConfig); } - - const client = new WebSocketClient(config); - this.webSocketClients.set(name, client); - LogUtils.info(TAG, `创建WebSocket客户端: ${name}`); - - return client; + return this.httpClient; } /** * 获取WebSocket客户端 */ - public getWebSocketClient(name: string): WebSocketClient | null { - return this.webSocketClients.get(name) || null; + public getWebSocketClient() { + if (!this.wsClient) { + this.wsClient = new WebSocketClient(this.config.wsConfig); + } + return this.wsClient; } - /** - * 获取序列化管理器 - */ - public getSerializerManager(): SerializerManager { - return this.serializerManager; - } - - /** - * 销毁网络管理器 - */ - public destroy(): void { + protected onRelease(): void { LogUtils.info(TAG, "销毁网络管理器"); - - for (const [, client] of this.webSocketClients) - void client.disconnect(); - this.webSocketClients.clear(); + if (this.wsClient) { + this.wsClient.disconnect(); + } + this.wsClient = null; + this.httpClient = null; } } diff --git a/extensions/max-studio/assets/max-studio/core/net/Types.ts b/extensions/max-studio/assets/max-studio/core/net/Types.ts index 96c74a1..eae6194 100644 --- a/extensions/max-studio/assets/max-studio/core/net/Types.ts +++ b/extensions/max-studio/assets/max-studio/core/net/Types.ts @@ -28,9 +28,8 @@ export enum NetworkStatus { } /** HTTP请求配置 */ -export interface HttpRequestConfig { +export interface IHttpConfig { url: string; - method: HttpMethod; headers?: Record; data?: any; timeout?: number; @@ -46,11 +45,11 @@ export interface HttpResponse { status: number; statusText: string; headers: Record; - config: HttpRequestConfig; + config: IHttpConfig; } /** WebSocket配置 */ -export interface WebSocketConfig { +export interface IWebSocketConfig { url: string; protocols?: string[]; reconnectInterval?: number; @@ -59,6 +58,11 @@ export interface WebSocketConfig { heartbeatTimeout?: number; binaryType?: "blob" | "arraybuffer"; autoReconnect?: boolean; + + // 前后台管理配置 + disconnectOnBackground?: boolean; // 进入后台时是否自动断开连接,默认true + reconnectOnForeground?: boolean; // 回到前台时是否自动重连,默认true + foregroundReconnectDelay?: number; // 回到前台后重连延迟时间(ms),默认1000 } /** WebSocket消息 */ @@ -91,11 +95,7 @@ export enum WorkerMessageType { } /** 网络配置 */ -export interface NetworkConfig { - httpRootUrl?: string; - wsRootUrl?: string; - workerPath?: string; - defaultTimeout?: number; - defaultRetryCount?: number; - defaultRetryDelay?: number; +export interface INetworkConfig { + httpConfig?: IHttpConfig; + wsConfig?: IWebSocketConfig; } diff --git a/extensions/max-studio/assets/max-studio/core/net/WebSocketClient.ts b/extensions/max-studio/assets/max-studio/core/net/WebSocketClient.ts index ccad71f..b045bb6 100644 --- a/extensions/max-studio/assets/max-studio/core/net/WebSocketClient.ts +++ b/extensions/max-studio/assets/max-studio/core/net/WebSocketClient.ts @@ -1,26 +1,46 @@ +import { Game, game } from "cc"; import LogUtils from "../utils/LogUtils"; -import { - WebSocketConfig, - WebSocketMessage, - NetworkStatus, - SerializationType, -} from "./Types"; +import { IWebSocketConfig, WebSocketMessage, NetworkStatus, SerializationType } from "./Types"; +import { UIManager } from "../ui"; +import DefaultNetworkMask from "../ui/default/DefaultNetworkMask"; const TAG = "Network"; +/** + * 重连状态枚举 + */ +enum ReconnectState { + NONE = "none", + RECONNECTING = "reconnecting", + FAILED = "failed", +} + /** * WebSocket客户端 */ export class WebSocketClient { - private config: WebSocketConfig; + private config: IWebSocketConfig; private status: NetworkStatus = NetworkStatus.IDLE; - private messageHandlers = new Map< - string, - (message: WebSocketMessage) => void - >(); + private messageHandlers = new Map void>(); private statusHandlers: Array<(status: NetworkStatus) => void> = []; + private socket: WebSocket = null; - constructor(config: WebSocketConfig) { + // 重连相关属性 + private reconnectAttempts: number = 0; + private reconnectState: ReconnectState = ReconnectState.NONE; + private isShowingMask: boolean = false; + private reconnectTimer: NodeJS.Timeout = null; + + // 心跳相关属性 + private heartbeatTimer: NodeJS.Timeout = null; + private heartbeatTimeoutTimer: NodeJS.Timeout = null; + private lastHeartbeatTime: number = 0; + + // 前后台状态管理 + private isInBackground: boolean = false; + private wasConnectedBeforeBackground: boolean = false; + + constructor(config: IWebSocketConfig) { this.config = { reconnectInterval: 5000, maxReconnectAttempts: 5, @@ -28,46 +48,172 @@ export class WebSocketClient { heartbeatTimeout: 10000, binaryType: "arraybuffer", autoReconnect: true, + // 设置前后台管理的默认值 + disconnectOnBackground: true, + reconnectOnForeground: true, + foregroundReconnectDelay: 1000, ...config, }; this.setupWorkerHandlers(); + + // 初始化前后台状态监听 + this.initBackgroundStateListener(); } /** * 连接WebSocket */ public async connect(): Promise { - // TODO: 实现WebSocket连接逻辑 + if (this.status === NetworkStatus.CONNECTED || this.status === NetworkStatus.CONNECTING) { + LogUtils.warn(TAG, "WebSocket已连接或正在连接中"); + return; + } + LogUtils.info(TAG, `连接WebSocket: ${this.config.url}`); this.setStatus(NetworkStatus.CONNECTING); + + try { + // 清理之前的连接 + this.cleanup(); + + // 创建WebSocket连接 + this.socket = new WebSocket(this.config.url); + this.socket.binaryType = this.config.binaryType; + + // 设置事件监听器 + this.setupSocketEventHandlers(); + + // 等待连接建立 + await this.waitForConnection(); + + LogUtils.info(TAG, "WebSocket连接成功"); + this.setStatus(NetworkStatus.CONNECTED); + // 重置重连状态 + this.reconnectAttempts = 0; + this.reconnectState = ReconnectState.NONE; + + // 开始心跳检测 + this.startHeartbeat(); + } catch (err) { + LogUtils.error(TAG, "WebSocket连接失败:", err); + this.setStatus(NetworkStatus.DISCONNECTED); + this.hideLoadingMask(); + + // 如果启用自动重连,则尝试重连 + if (this.config.autoReconnect) { + this.attemptReconnect(); + } + } + } + + /** + * 初始化前后台状态监听 + */ + private initBackgroundStateListener(): void { + // 监听游戏进入后台事件 + game.on(Game.EVENT_HIDE, this.onGameHide, this); + // 监听游戏回到前台事件 + game.on(Game.EVENT_SHOW, this.onGameShow, this); + } + + /** + * 游戏进入后台时的处理 + */ + private onGameHide(): void { + console.log("[WebSocketClient] 游戏进入后台"); + this.isInBackground = true; + + // 记录进入后台前的连接状态 + this.wasConnectedBeforeBackground = this.status === NetworkStatus.CONNECTED; + + // 如果配置允许且当前已连接,则主动断开 + if (this.config.disconnectOnBackground && this.status === NetworkStatus.CONNECTED) { + console.log("[WebSocketClient] 主动断开网络连接(进入后台)"); + this.disconnect(); + } + } + + /** + * 游戏回到前台时的处理 + */ + private onGameShow(): void { + console.log("[WebSocketClient] 游戏回到前台"); + this.isInBackground = false; + + // 如果配置允许且进入后台前是连接状态,则自动重连 + if (this.config.reconnectOnForeground && this.wasConnectedBeforeBackground) { + console.log("[WebSocketClient] 自动重连网络(回到前台)"); + const delay = this.config.foregroundReconnectDelay || 1000; + setTimeout(() => { + this.connect(); + }, delay); + } + + this.wasConnectedBeforeBackground = false; + } + + /** + * 销毁时清理前后台状态监听 + */ + public destroy(): void { + game.off(Game.EVENT_HIDE, this.onGameHide, this); + game.off(Game.EVENT_SHOW, this.onGameShow, this); + + // 清理连接 + this.disconnect(); + + // 清理所有处理器 + this.messageHandlers.clear(); + this.statusHandlers.length = 0; } /** * 断开连接 */ public async disconnect(): Promise { - // TODO: 实现WebSocket断开逻辑 LogUtils.info(TAG, "断开WebSocket连接"); + + // 停止自动重连 + this.config.autoReconnect = false; + // 清理连接 + this.cleanup(); + + // 设置状态 + this.setStatus(NetworkStatus.DISCONNECTED); + this.hideLoadingMask(); } /** * 发送消息 */ - public async send( - data: any, - type: SerializationType = "json", - ): Promise { - // TODO: 实现消息发送逻辑 - LogUtils.debug(TAG, `发送WebSocket消息: ${type}`); + public async send(data: any, type: SerializationType = "json"): Promise { + if (this.status !== NetworkStatus.CONNECTED || !this.socket) { + throw new Error("WebSocket未连接"); + } + + try { + let message: string | ArrayBuffer; + + if (type === "json") { + message = JSON.stringify(data); + } else if (type === "binary") { + message = data as ArrayBuffer; + } else { + throw new Error(`不支持的序列化类型: ${type}`); + } + + this.socket.send(message); + LogUtils.debug(TAG, `发送WebSocket消息: ${type}`, data); + } catch (err) { + LogUtils.error(TAG, "发送WebSocket消息失败:", err); + throw err; + } } /** * 注册消息处理器 */ - public onMessage( - type: string, - handler: (message: WebSocketMessage) => void, - ): void { + public onMessage(type: string, handler: (message: WebSocketMessage) => void): void { this.messageHandlers.set(type, handler); } @@ -85,6 +231,27 @@ export class WebSocketClient { return this.status; } + /** + * 显示重连失败对话框 + */ + private showReconnectFailedDialog(): void { + const opt = { + title: "网络连接失败", + content: `网络连接失败,已重试${this.config.maxReconnectAttempts}次。请检查网络设置后重试。`, + onConfirm: () => { + this.reconnectAttempts = 0; + this.reconnectState = ReconnectState.NONE; + this.connect(); + }, + onCancel: () => { + LogUtils.info(TAG, "用户取消重连"); + // 可以在这里处理用户取消的逻辑,比如返回登录页面等 + }, + }; + UIManager.getInstance().openUI("CommonDialogBox", opt); + LogUtils.error(TAG, "显示重连失败对话框"); + } + private setupWorkerHandlers(): void { // TODO: 设置Worker消息处理器 } @@ -95,4 +262,269 @@ export class WebSocketClient { for (const handler of this.statusHandlers) handler(status); } } + + /** + * 显示加载遮罩 + */ + private showLoadingMask(): void { + if (this.isShowingMask) { + return; + } + + this.isShowingMask = true; + + let message = "网络连接中..."; + if (this.reconnectState === ReconnectState.RECONNECTING) { + message = `网络重连中... (${this.reconnectAttempts}/${this.config.maxReconnectAttempts})`; + } + UIManager.getInstance().openUI(DefaultNetworkMask, message); + LogUtils.info(TAG, "显示网络连接遮罩:", message); + } + + /** + * 隐藏加载遮罩 + */ + private hideLoadingMask(): void { + if (!this.isShowingMask) { + return; + } + + this.isShowingMask = false; + UIManager.getInstance().closeUI(DefaultNetworkMask); + LogUtils.info(TAG, "隐藏网络连接遮罩"); + } + + /** + * 清理WebSocket连接和定时器 + */ + private cleanup(): void { + // 关闭WebSocket连接 + if (this.socket) { + this.socket.onopen = null; + this.socket.onclose = null; + this.socket.onerror = null; + this.socket.onmessage = null; + + if (this.socket.readyState === WebSocket.OPEN) { + this.socket.close(); + } + this.socket = null; + } + + // 清理定时器 + this.stopHeartbeat(); + this.stopReconnectTimer(); + } + + /** + * 设置WebSocket事件处理器 + */ + private setupSocketEventHandlers(): void { + if (!this.socket) return; + + this.socket.onopen = (event) => { + LogUtils.info(TAG, "WebSocket连接已打开"); + }; + + this.socket.onclose = (event) => { + LogUtils.info(TAG, "WebSocket连接已关闭", event.code, event.reason); + this.setStatus(NetworkStatus.DISCONNECTED); + this.stopHeartbeat(); + + // 如果不是主动断开且启用自动重连,则尝试重连 + if (this.config.autoReconnect && event.code !== 1000) { + this.attemptReconnect(); + } + }; + + this.socket.onerror = (event) => { + LogUtils.error(TAG, "WebSocket连接错误", event); + this.setStatus(NetworkStatus.ERROR); + }; + + this.socket.onmessage = (event) => { + this.handleMessage(event.data); + }; + } + + /** + * 等待WebSocket连接建立 + */ + private waitForConnection(): Promise { + return new Promise((resolve, reject) => { + if (!this.socket) { + reject(new Error("WebSocket未初始化")); + return; + } + + const timeout = setTimeout(() => { + reject(new Error("WebSocket连接超时")); + }, 10000); // 10秒超时 + + // 保存原有的事件处理器 + const originalOnOpen = this.socket.onopen; + const originalOnError = this.socket.onerror; + + // 临时设置连接等待的事件处理器 + this.socket.onopen = (event) => { + clearTimeout(timeout); + // 恢复原有的事件处理器 + this.socket.onopen = originalOnOpen; + this.socket.onerror = originalOnError; + // 调用原有的onopen处理器 + if (originalOnOpen) { + originalOnOpen.call(this.socket, event); + } + resolve(); + }; + + this.socket.onerror = (_) => { + clearTimeout(timeout); + // 恢复原有的事件处理器 + this.socket.onopen = originalOnOpen; + this.socket.onerror = originalOnError; + reject(new Error("WebSocket连接失败")); + }; + }); + } + + /** + * 开始心跳检测 + */ + private startHeartbeat(): void { + if (!this.config.heartbeatInterval || this.config.heartbeatInterval <= 0) { + return; + } + + this.stopHeartbeat(); + + this.heartbeatTimer = setInterval(() => { + this.sendHeartbeat(); + }, this.config.heartbeatInterval); + } + + /** + * 停止心跳检测 + */ + private stopHeartbeat(): void { + if (this.heartbeatTimer) { + clearInterval(this.heartbeatTimer); + this.heartbeatTimer = null; + } + + if (this.heartbeatTimeoutTimer) { + clearTimeout(this.heartbeatTimeoutTimer); + this.heartbeatTimeoutTimer = null; + } + } + + /** + * 发送心跳包 + */ + private sendHeartbeat(): void { + if (this.status !== NetworkStatus.CONNECTED) { + return; + } + + try { + const heartbeatData = { + type: "heartbeat", + timestamp: Date.now(), + }; + + this.send(heartbeatData, "json"); + this.lastHeartbeatTime = Date.now(); + + // 设置心跳超时检测 + this.heartbeatTimeoutTimer = setTimeout(() => { + LogUtils.warn(TAG, "心跳超时,可能网络异常"); + if (this.config.autoReconnect) { + this.attemptReconnect(); + } + }, this.config.heartbeatTimeout); + } catch (err) { + LogUtils.error(TAG, "发送心跳失败:", err); + } + } + + /** + * 尝试重连 + */ + private attemptReconnect(): void { + if (this.reconnectState === ReconnectState.RECONNECTING) { + return; + } + + if (this.reconnectAttempts >= this.config.maxReconnectAttempts) { + this.reconnectState = ReconnectState.FAILED; + this.showReconnectFailedDialog(); + return; + } + + this.reconnectState = ReconnectState.RECONNECTING; + this.reconnectAttempts++; + + LogUtils.info(TAG, `开始第${this.reconnectAttempts}次重连尝试`); + this.showLoadingMask(); + + this.reconnectTimer = setTimeout(() => { + this.connect(); + }, this.config.reconnectInterval); + } + + /** + * 停止重连定时器 + */ + private stopReconnectTimer(): void { + if (this.reconnectTimer) { + clearTimeout(this.reconnectTimer); + this.reconnectTimer = null; + } + } + + /** + * 处理接收到的消息 + */ + private handleMessage(data: string | ArrayBuffer): void { + try { + let parsedData: any; + + if (typeof data === "string") { + parsedData = JSON.parse(data); + } else { + // 处理二进制数据 + // 这里可以根据实际需求实现二进制数据的反序列化 + LogUtils.warn(TAG, "收到二进制消息,暂未实现处理逻辑"); + return; + } + + // 处理心跳响应(直接检查原始数据的type字段) + if (parsedData.type === "heartbeat_response" || parsedData.type === "heartbeat") { + if (this.heartbeatTimeoutTimer) { + clearTimeout(this.heartbeatTimeoutTimer); + this.heartbeatTimeoutTimer = null; + } + LogUtils.debug(TAG, "收到心跳响应"); + return; + } + + // 构造WebSocketMessage对象 + const message: WebSocketMessage = { + id: parsedData.id || Date.now().toString(), + type: parsedData.type || "json", + data: parsedData.data || parsedData, + timestamp: parsedData.timestamp || Date.now(), + }; + + // 分发消息给对应的处理器 + const handler = this.messageHandlers.get(parsedData.type); + if (handler) { + handler(message); + } else { + LogUtils.warn(TAG, `未找到消息类型 ${parsedData.type} 的处理器`); + } + } catch (err) { + LogUtils.error(TAG, "处理WebSocket消息失败:", err); + } + } } diff --git a/extensions/max-studio/assets/max-studio/core/net/index.ts b/extensions/max-studio/assets/max-studio/core/net/index.ts new file mode 100644 index 0000000..5bd53b1 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/net/index.ts @@ -0,0 +1,7 @@ +export { WebSocketClient } from "./WebSocketClient"; +export { default as HttpClient } from "./HttpClient"; +export { default as HttpRequest } from "./HttpRequest"; +export { NetworkManager } from "./NetworkManager"; +export type { ISerializer } from "./Serializer"; +export { JsonSerializer, ProtobufSerializer, SerializerManager } from "./Serializer"; +export * from "./Types"; diff --git a/extensions/max-studio/assets/max-studio/core/net/index.ts.meta b/extensions/max-studio/assets/max-studio/core/net/index.ts.meta new file mode 100644 index 0000000..3e119d3 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/net/index.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "41cbd31e-dddf-4cca-af5e-30fa952aaea2", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/extensions/max-studio/assets/max-studio/core/res/CCRemoteSprite.ts b/extensions/max-studio/assets/max-studio/core/res/CCRemoteSprite.ts deleted file mode 100644 index a14d6d6..0000000 --- a/extensions/max-studio/assets/max-studio/core/res/CCRemoteSprite.ts +++ /dev/null @@ -1,193 +0,0 @@ -import { nsStringUtils } from "@taqu/Util/StringUtils"; -import { isValid } from "cc"; -import { assetManager, ImageAsset, Texture2D } from "cc"; -import { SpriteFrame } from "cc"; -import { UITransform } from "cc"; -import { Sprite } from "cc"; -import { _decorator } from "cc"; -import { EDITOR } from "cc/env"; -const { ccclass, property } = _decorator; - -@ccclass("CCRemoteSprite") -export class CCRemoteSprite extends Sprite { - private static _remoteSpriteCache: Map = new Map(); - private static _loadingSpriteCache: Map> = new Map(); - private static _checkTimer: NodeJS.Timeout; - /** - * 远程图片URL - */ - @property({ - displayName: "远程图片URL", - tooltip: "远程图片的URL地址", - visible: true - }) - private _remoteUrl: string = ""; - - public get remoteUrl(): string { - return this._remoteUrl; - } - - public set remoteUrl(value: string) { - const newValue = value || ""; - if (this._remoteUrl !== newValue) { - this._remoteUrl = newValue; - if (nsStringUtils.isEmpty(this._remoteUrl)) { - this.release(); - return; - } - if (this.spriteFrame == null || this._remoteUrl !== this.spriteFrame.remoteUrl) { - this.loadRemoteSprite(this._remoteUrl).catch(err => { - app.log.error("RemoteSprite", `加载远程图片失败: ${this._remoteUrl}`, err); - // 可以添加默认图片或错误状态处理 - if (this.isValid) { - this.spriteFrame = null; - } - }); - } - } - } - - public onLoad(): void { - super.onLoad(); - if (EDITOR) { - return; - } - if (!CCRemoteSprite._checkTimer) { - CCRemoteSprite._checkTimer = setInterval(() => { - CCRemoteSprite.checkCache(); - }, 5000); - } - - if (!nsStringUtils.isEmpty(this.spriteFrame?.remoteUrl)) { - this.spriteFrame.addRef(); - } - if (!nsStringUtils.isEmpty(this._remoteUrl) && this.spriteFrame?.remoteUrl !== this._remoteUrl) { - this.loadRemoteSprite(this._remoteUrl).catch(err => { - app.log.error("RemoteSprite", `onLoad加载远程图片失败: ${this._remoteUrl}`, err); - }); - } else if (nsStringUtils.isEmpty(this._remoteUrl) && !nsStringUtils.isEmpty(this.spriteFrame?.remoteUrl)) { - this.release(); - } - } - - private async loadRemoteSprite(url: string): Promise { - if (nsStringUtils.isEmpty(url)) { - return; - } - - // URL 相同,且已经加载完成,直接返回 - if (this.spriteFrame && this.spriteFrame.remoteUrl == url) { - return; - } - - this.release(); - - if (CCRemoteSprite._remoteSpriteCache.has(url)) { - const sp = CCRemoteSprite._remoteSpriteCache.get(url); - sp.addRef(); - this.spriteFrame = sp; - return; - } - let loadingPromise: Promise = null; - if (CCRemoteSprite._loadingSpriteCache.has(url)) { - loadingPromise = CCRemoteSprite._loadingSpriteCache.get(url); - } else { - loadingPromise = new Promise((resolve, reject) => { - assetManager.loadRemote(url, (err, asset: ImageAsset) => { - if (err) { - app.log.error(`loadRemote error: ${url}`, err); - CCRemoteSprite._loadingSpriteCache.delete(url); - reject(err); - } else { - try { - asset.addRef(); - const texture = new Texture2D(); - texture.image = asset; - const spriteFrame = new SpriteFrame(); - spriteFrame.texture = texture; - spriteFrame.remoteUrl = url; - CCRemoteSprite._remoteSpriteCache.set(url, spriteFrame); - CCRemoteSprite._loadingSpriteCache.delete(url); - resolve(spriteFrame); - } catch (createErr) { - CCRemoteSprite._loadingSpriteCache.delete(url); - reject(createErr); - } - } - }); - }); - CCRemoteSprite._loadingSpriteCache.set(url, loadingPromise); - } - - const sp = await loadingPromise; - sp.addRef(); - // // 检查是否在加载过程中URL发生了变化 - if (sp && (!isValid(this.node, true) || this._remoteUrl !== url || this.spriteFrame?.remoteUrl === url)) { - sp.decRef(); - return; - } - console.log("loadSpriteFrame:", url); - this.spriteFrame = sp; - } - - public setSize(widthOrHeight: number, height?: number): void { - height ??= widthOrHeight; - this.sizeMode = Sprite.SizeMode.CUSTOM; - this.getComponent(UITransform).setContentSize(widthOrHeight, height); - } - - public release(): void { - if (!nsStringUtils.isEmpty(this.spriteFrame?.remoteUrl)) { - this.spriteFrame.decRef(); - } - this.spriteFrame = null; - } - - public onDestroy(): void { - this.release(); - super.onDestroy(); - } - - private static checkCache() { - // 检查缓存中是否有已加载的SpriteFrame - let clearUrls = []; - - for (const [url, spriteFrame] of CCRemoteSprite._remoteSpriteCache) { - if (spriteFrame.refCount <= 0) { - let texture = spriteFrame.texture as Texture2D; - let imageAsset: ImageAsset = null; - - // 如果已加入动态合图,必须取原始的Texture2D - if (spriteFrame.packable && spriteFrame.original) { - texture = spriteFrame.original._texture as Texture2D; - } - - // 获取ImageAsset引用 - if (texture?.image) { - imageAsset = texture.image; - } - - // 先销毁spriteFrame(这会自动处理对texture的引用) - if (spriteFrame.isValid) { - spriteFrame.destroy(); - } - - // 再销毁texture - if (texture?.isValid) { - texture.destroy(); - } - - // 最后减少ImageAsset的引用计数 - if (imageAsset?.isValid) { - imageAsset.decRef(); - } - clearUrls.push(url); - } - } - - app.log.log("清理缓存:", clearUrls.length); - clearUrls.forEach(url => { - CCRemoteSprite._remoteSpriteCache.delete(url); - }); - } -} diff --git a/extensions/max-studio/assets/max-studio/core/res/LocalSprite.ts b/extensions/max-studio/assets/max-studio/core/res/LocalSprite.ts deleted file mode 100644 index 0e7aef5..0000000 --- a/extensions/max-studio/assets/max-studio/core/res/LocalSprite.ts +++ /dev/null @@ -1,156 +0,0 @@ -import { _decorator, Sprite, SpriteFrame } from "cc"; -import LogUtils from "../utils/LogUtils"; -import { ResManager } from "./ResManager"; -import { EDITOR } from "cc/env"; -const { ccclass, property } = _decorator; - -const TAG = "LocalSprite"; - -@ccclass("LocalSprite") -export default class LocalSprite extends Sprite { - @property({ - displayName: "Bundle名称", - tooltip: "资源包名称,默认为resources", - visible: true, - }) - private _bundleName: string = "resources"; - - @property({ - displayName: "资源路径", - tooltip: "SpriteFrame资源路径", - visible: true, - }) - private _assetPath: string = ""; - - private _isLoading: boolean = false; - private _loadingKey: string = ""; - - /** - * 获取Bundle名称 - */ - get bundleName(): string { - return this._bundleName; - } - - /** - * 设置Bundle名称 - */ - set bundleName(value: string) { - const newValue = value || "resources"; - if (this._bundleName !== newValue) { - this._bundleName = newValue; - void this.loadSpriteFrame(); - } - } - - /** - * 获取资源路径 - */ - get assetPath(): string { - return this._assetPath; - } - - /** - * 设置资源路径 - */ - set assetPath(value: string) { - if (this._assetPath !== value) { - this._assetPath = value; - void this.loadSpriteFrame(); - } - } - - /** - * 获取是否正在加载 - */ - get isLoading(): boolean { - return this._isLoading; - } - - public onLoad(): void { - super.onLoad(); - if (EDITOR) { - return; - } - void this.loadSpriteFrame(); - } - - /** - * 设置Bundle和资源路径 - */ - public setAsset(assetPath: string, bundleName: string = "resources"): void { - // 先释放旧资源 - if (this._bundleName && this._assetPath) { - ResManager.getInstance().releaseAsset( - this._bundleName, - this._assetPath, - ); - } - - this._bundleName = bundleName || "resources"; - this._assetPath = assetPath; - void this.loadSpriteFrame(); - } - - /** - * 加载SpriteFrame - */ - private async loadSpriteFrame(): Promise { - // 检查路径是否有效 - if (!this._assetPath) { - LogUtils.warn(TAG, "资源路径为空"); - this.spriteFrame = null; - return; - } - - const loadKey = `${this._bundleName}/${this._assetPath}`; - // 防止重复加载 - if (this._isLoading && loadKey == this._loadingKey) { - LogUtils.warn( - TAG, - `正在加载中,跳过重复请求: ${this._bundleName}/${this._assetPath}`, - ); - return; - } - - this._isLoading = true; - this._loadingKey = loadKey; - try { - LogUtils.log( - TAG, - `开始加载SpriteFrame: ${this._bundleName}/${this._assetPath}`, - ); - - const spriteFrame = - await ResManager.getInstance().loadAsset( - this._assetPath, - SpriteFrame, - this._bundleName, - ); - - if (spriteFrame && this.isValid && loadKey == this._loadingKey) { - this.spriteFrame = spriteFrame; - LogUtils.log( - TAG, - `加载SpriteFrame成功: ${this._bundleName}/${this._assetPath}`, - ); - } else { - LogUtils.log( - TAG, - `加载SpriteFrame失败: ${this._bundleName}/${this._assetPath}`, - ); - } - } catch (err) { - LogUtils.error( - TAG, - `加载SpriteFrame失败: ${this._bundleName}/${this._assetPath}`, - err, - ); - if (this.isValid) { - this.spriteFrame = null; - } - } finally { - this._isLoading = false; - } - } -} diff --git a/extensions/max-studio/assets/max-studio/core/res/RemoteSprite.ts b/extensions/max-studio/assets/max-studio/core/res/RemoteSprite.ts index a16f02d..63fc9d6 100644 --- a/extensions/max-studio/assets/max-studio/core/res/RemoteSprite.ts +++ b/extensions/max-studio/assets/max-studio/core/res/RemoteSprite.ts @@ -1,22 +1,29 @@ -import { isValid } from "cc"; -import { assetManager, ImageAsset, Texture2D } from "cc"; -import { SpriteFrame } from "cc"; +import { isValid, SpriteFrame } from "cc"; import { UITransform } from "cc"; import { Sprite } from "cc"; import { _decorator } from "cc"; import { EDITOR } from "cc/env"; import { StringUtils } from "../utils/StringUtils"; import LogUtils from "../utils/LogUtils"; +import ResManager from "./ResManager"; const { ccclass, property } = _decorator; -const CACHE_EXPIRE_TIME = 30000; // 30s 缓存30s -const CACHE_CHECK_INTERVAL = 5000; // 5秒检查一次 - @ccclass("RemoteSprite") export class RemoteSprite extends Sprite { - private static _remoteSpriteCache: Map = new Map(); - private static _loadingSpriteCache: Map> = new Map(); - private static _checkTimer: NodeJS.Timeout; + @property({ + displayName: "bundle 资源", + tooltip: "bundle 资源", + visible: true, + }) + private bundle: string = ""; + + @property({ + displayName: "资源路径", + tooltip: "资源路径", + visible: true, + }) + private path: string = ""; + /** * 远程图片URL */ @@ -51,24 +58,21 @@ export class RemoteSprite extends Sprite { } } - // override set spriteFrame(value: SpriteFrame) { - // super.spriteFrame = value; - // } + public setSpriteFrame(sf: SpriteFrame) { + this.remoteUrl = null; + this.spriteFrame = sf; + } + + public setBundleSpriteFrame(bundle: string, path: string) {} public onLoad(): void { super.onLoad(); if (EDITOR) { return; } - if (!RemoteSprite._checkTimer) { - RemoteSprite._checkTimer = setInterval(() => { - RemoteSprite.checkCache(); - }, CACHE_CHECK_INTERVAL); - } if (!StringUtils.isEmpty(this.spriteFrame?.remoteUrl)) { this.spriteFrame.addRef(); - this.spriteFrame.lastAccessTime = Date.now(); } if (!StringUtils.isEmpty(this._remoteUrl) && this.spriteFrame?.remoteUrl !== this._remoteUrl) { this.loadRemoteSprite(this._remoteUrl).catch((err) => { @@ -89,52 +93,10 @@ export class RemoteSprite extends Sprite { return; } - if (RemoteSprite._remoteSpriteCache.has(url)) { - const sp = RemoteSprite._remoteSpriteCache.get(url); - sp.lastAccessTime = Date.now(); - sp.addRef(); - this.release(); - this.spriteFrame = sp; - return; - } - let loadingPromise: Promise = null; - if (RemoteSprite._loadingSpriteCache.has(url)) { - loadingPromise = RemoteSprite._loadingSpriteCache.get(url); - } else { - loadingPromise = new Promise((resolve, reject) => { - LogUtils.log("RemoteSprite", `loadRemoteSprite: ${url}`); - assetManager.loadRemote(url, (err, asset: ImageAsset) => { - if (err) { - LogUtils.error(`loadRemote error: ${url}`, err); - RemoteSprite._loadingSpriteCache.delete(url); - reject(err); - } else { - try { - asset.addRef(); - const texture = new Texture2D(); - texture.image = asset; - const spriteFrame = new SpriteFrame(); - spriteFrame.texture = texture; - spriteFrame.remoteUrl = url; - RemoteSprite._remoteSpriteCache.set(url, spriteFrame); - RemoteSprite._loadingSpriteCache.delete(url); - resolve(spriteFrame); - } catch (createErr) { - RemoteSprite._loadingSpriteCache.delete(url); - reject(createErr); - } - } - }); - }); - RemoteSprite._loadingSpriteCache.set(url, loadingPromise); - } - - const sp = await loadingPromise; - sp.addRef(); - sp.lastAccessTime = Date.now(); + const { err, spriteFrame: sp } = await ResManager.getInstance().loadRemoteSprite({ url }); // // 检查是否在加载过程中URL发生了变化 if (sp && (!isValid(this.node, true) || this._remoteUrl !== url || this.spriteFrame?.remoteUrl === url)) { - sp.decRef(false); + ResManager.getInstance().releaseAsset(sp); return; } console.log("loadSpriteFrame:", url); @@ -150,7 +112,7 @@ export class RemoteSprite extends Sprite { public release(): void { if (!StringUtils.isEmpty(this.spriteFrame?.remoteUrl)) { - this.spriteFrame.decRef(false); + ResManager.getInstance().releaseAsset(this.spriteFrame); } this.spriteFrame = null; } @@ -159,48 +121,4 @@ export class RemoteSprite extends Sprite { this.release(); super.onDestroy(); } - - private static checkCache() { - // 检查缓存中是否有已加载的SpriteFrame - let clearUrls = []; - - let now = Date.now(); - for (const [url, spriteFrame] of RemoteSprite._remoteSpriteCache) { - if (spriteFrame.refCount <= 0 && spriteFrame.lastAccessTime < now - CACHE_EXPIRE_TIME) { - let texture = spriteFrame.texture as Texture2D; - let imageAsset: ImageAsset = null; - - // 如果已加入动态合图,必须取原始的Texture2D - if (spriteFrame.packable && spriteFrame.original) { - texture = spriteFrame.original._texture as Texture2D; - } - - // 获取ImageAsset引用 - if (texture?.image) { - imageAsset = texture.image; - } - - // 先销毁spriteFrame(这会自动处理对texture的引用) - if (spriteFrame.isValid) { - spriteFrame.destroy(); - } - - // 再销毁texture - if (texture?.isValid) { - texture.destroy(); - } - - // 最后减少ImageAsset的引用计数 - if (imageAsset?.isValid) { - imageAsset.decRef(); - } - clearUrls.push(url); - } - } - - clearUrls.forEach((url) => { - RemoteSprite._remoteSpriteCache.delete(url); - }); - LogUtils.log("清理缓存:", clearUrls.length, RemoteSprite._remoteSpriteCache.size); - } } diff --git a/extensions/max-studio/assets/max-studio/core/res/RemoteSpriteCache.ts b/extensions/max-studio/assets/max-studio/core/res/RemoteSpriteCache.ts deleted file mode 100644 index b8ff4d6..0000000 --- a/extensions/max-studio/assets/max-studio/core/res/RemoteSpriteCache.ts +++ /dev/null @@ -1,387 +0,0 @@ -import { _decorator, SpriteFrame, ImageAsset, Texture2D, assetManager } from "cc"; -import NodeSingleton from "../NodeSingleton"; -import LogUtils from "../utils/LogUtils"; -import { StringUtils } from "../utils/StringUtils"; -const { ccclass } = _decorator; - -enum LoadState { - NONE, - LOADING, - LOADED, - FAILED, -} - -// 添加加载超时和重试机制 -const LOAD_TIMEOUT = 30000; // 30秒超时 -const MAX_RETRY_COUNT = 3; - -// 资源缓存项接口 -class CacheItem { - spriteFrame: SpriteFrame | null; - loadState: LoadState; - loadPromise: Promise | null; - - private _refCount: number; - private _retryCount: number = 0; - private _loadStartTime: number = 0; - - get refCount(): number { - return this._refCount; - } - set refCount(value: number) { - this._lastAccessTime = Date.now(); - this._refCount = value; - } - private _lastAccessTime: number; - get lastAccessTime(): number { - return this._lastAccessTime; - } - - constructor() { - this.loadState = LoadState.NONE; - this.refCount = 0; - } - - get retryCount(): number { - return this._retryCount; - } - - incrementRetry(): void { - this._retryCount++; - } - - resetRetry(): void { - this._retryCount = 0; - } - - setLoadStartTime(): void { - this._loadStartTime = Date.now(); - } - - isLoadTimeout(): boolean { - return Date.now() - this._loadStartTime > LOAD_TIMEOUT; - } -} - -const TAG = "RemoteSpriteCache"; -const CLEANUP_CHECK_INTERVAL = 10; // 10秒检查一次 -const CACHE_EXPIRE_TIME = 1 * 30 * 1000; // 1分钟 - -// 添加最大缓存数量限制 -const MAX_CACHE_SIZE = 100; // 最大缓存数量 - -@ccclass("RemoteSpriteCache") -export class RemoteSpriteCache extends NodeSingleton { - private readonly _cache = new Map(); - private _lastCleanupTime = 0; - private _maxCacheSize = MAX_CACHE_SIZE; - - /** - * 设置最大缓存数量 - */ - public setMaxCacheSize(size: number): void { - this._maxCacheSize = Math.max(10, size); - LogUtils.info(TAG, `设置最大缓存数量: ${this._maxCacheSize}`); - } - - protected init(): void { - this._lastCleanupTime = Date.now(); - LogUtils.log(TAG, "RemoteSpriteCache initialized"); - } - - /** - * 检查并注册精灵 - */ - public checkAndRegisterSprite(spriteFrame: SpriteFrame): boolean { - if (spriteFrame && !StringUtils.isEmpty(spriteFrame.remoteUrl)) { - const cacheItem = this._cache.get(spriteFrame.remoteUrl); - if (cacheItem) { - cacheItem.refCount++; - return true; - } - } - return false; - } - - protected update(dt: number): void { - const currentTime = Date.now(); - // 每隔指定时间检查一次过期资源 - if (currentTime - this._lastCleanupTime >= CLEANUP_CHECK_INTERVAL * 1000) { - this.cleanupUnusedResources(); - this._lastCleanupTime = currentTime; - } - } - - /** - * 加载SpriteFrame(带重试机制) - */ - public async loadSpriteFrame(url: string): Promise { - let cacheItem = this._cache.get(url); - if (cacheItem) { - if (cacheItem.loadState === LoadState.LOADED && cacheItem.spriteFrame) { - cacheItem.refCount++; - return cacheItem.spriteFrame; - } else if (cacheItem.loadState === LoadState.LOADING && cacheItem.loadPromise) { - try { - const spriteFrame = await cacheItem.loadPromise; - if (spriteFrame) { - cacheItem.refCount++; - } - return spriteFrame; - } catch (err) { - LogUtils.error(TAG, `等待加载失败: ${url}`, err); - // 如果等待失败,重新尝试加载 - cacheItem.loadState = LoadState.FAILED; - cacheItem.loadPromise = null; - } - } - - // 如果加载失败且重试次数未达到上限,重新尝试 - if (cacheItem.loadState === LoadState.FAILED && cacheItem.retryCount < MAX_RETRY_COUNT) { - LogUtils.warn(TAG, `重试加载: ${url}, 第${cacheItem.retryCount + 1}次`); - cacheItem.incrementRetry(); - return this.doLoadSpriteFrame(url, cacheItem); - } - - if (cacheItem.loadState === LoadState.FAILED) { - throw new Error(`加载失败且已达到最大重试次数: ${url}`); - } - } - - cacheItem = new CacheItem(); - this._cache.set(url, cacheItem); - - return this.doLoadSpriteFrame(url, cacheItem); - } - - private async doLoadSpriteFrame(url: string, cacheItem: CacheItem): Promise { - cacheItem.loadState = LoadState.LOADING; - cacheItem.setLoadStartTime(); - - cacheItem.loadPromise = new Promise((resolve, reject) => { - const timeoutId = setTimeout(() => { - LogUtils.error(TAG, `加载超时: ${url}`); - cacheItem.loadState = LoadState.FAILED; - cacheItem.loadPromise = null; - reject(new Error(`加载超时: ${url}`)); - }, LOAD_TIMEOUT); - - console.log(`开始加载资源: ${url}`); - assetManager.loadRemote(url, (err, asset: ImageAsset) => { - clearTimeout(timeoutId); - - if (err) { - LogUtils.error(TAG, `loadRemote error: ${url}`, err); - cacheItem.loadState = LoadState.FAILED; - cacheItem.loadPromise = null; - reject(err); - } else { - try { - asset.addRef(); - const texture = new Texture2D(); - texture.image = asset; - const spriteFrame = new SpriteFrame(); - spriteFrame.texture = texture; - spriteFrame.addRef(); - spriteFrame.remoteUrl = url; - - cacheItem.refCount++; - cacheItem.spriteFrame = spriteFrame; - cacheItem.loadState = LoadState.LOADED; - cacheItem.loadPromise = null; - cacheItem.resetRetry(); - - resolve(spriteFrame); - } catch (createErr) { - LogUtils.error(TAG, `创建SpriteFrame失败: ${url}`, createErr); - cacheItem.loadState = LoadState.FAILED; - cacheItem.loadPromise = null; - reject(createErr); - } - } - }); - }); - - return await cacheItem.loadPromise; - } - - /** - * 释放资源引用 - */ - public releaseResource(url: string): void { - if (url) { - const cacheItem = this._cache.get(url); - if (cacheItem) { - cacheItem.refCount--; - console.log(`释放资源引用: ${url}, 引用计数: ${cacheItem.refCount}`); - } - } - } - - /** - * 清理未使用的资源 - */ - public cleanupUnusedResources(): void { - const currentCacheSize = this._cache.size; - const targetSize = Math.floor(this._maxCacheSize * 0.8); // 目标大小为阈值的80% - - // 如果未达到阈值,仅清理引用计数为0且缓存超时的资源 - if (currentCacheSize < this._maxCacheSize) { - this.cleanupExpiredResources(); - return; - } - - // 达到阈值时,按使用时间排序清理引用计数为0的资源 - this.cleanupByUsageTime(targetSize); - } - - /** - * 清理过期的资源(引用计数为0且超时) - */ - private cleanupExpiredResources(): void { - const urlsToRemove: string[] = []; - let cleanedCount = 0; - const currentTime = Date.now(); - - for (const [url, cacheItem] of this._cache.entries()) { - if ( - cacheItem.spriteFrame && - cacheItem.loadState === LoadState.LOADED && - cacheItem.refCount <= 0 && - cacheItem.lastAccessTime < currentTime - CACHE_EXPIRE_TIME - ) { - this.destroyCacheItem(cacheItem); - urlsToRemove.push(url); - cleanedCount++; - } - } - - // 从缓存中移除已清理的项 - for (const url of urlsToRemove) { - this._cache.delete(url); - } - - if (cleanedCount > 0) { - LogUtils.log(TAG, `清理过期资源: ${cleanedCount} 个`); - } - } - - /** - * 按使用时间排序清理资源(只清理引用计数为0的资源) - */ - private cleanupByUsageTime(targetSize: number): void { - // 直接筛选并排序需要清理的资源 - const entriesToClean = Array.from(this._cache.entries()) - .filter(([_, cacheItem]) => cacheItem.refCount <= 0 && cacheItem.loadState === LoadState.LOADED) - .sort((a, b) => a[1].lastAccessTime - b[1].lastAccessTime); - - let cleanedCount = 0; - - // 清理资源直到达到目标大小 - for (const [url, cacheItem] of entriesToClean) { - if (this._cache.size <= targetSize) { - break; - } - - this.destroyCacheItem(cacheItem); - this._cache.delete(url); - cleanedCount++; - } - - if (cleanedCount > 0) { - const finalSize = this._cache.size; - LogUtils.log( - TAG, - `缓存清理完成: 清理了 ${cleanedCount} 个资源,当前缓存大小: ${finalSize}/${this._maxCacheSize}`, - ); - } - } - - /** - * 销毁缓存项中的资源 - */ - private destroyCacheItem(cacheItem: CacheItem): void { - if (!cacheItem.spriteFrame) { - return; - } - - try { - // 先获取texture引用 - let texture = cacheItem.spriteFrame.texture as Texture2D; - let imageAsset: ImageAsset = null; - - // 如果已加入动态合图,必须取原始的Texture2D - if (cacheItem.spriteFrame.packable && cacheItem.spriteFrame.original) { - texture = cacheItem.spriteFrame.original._texture as Texture2D; - } - - // 获取ImageAsset引用 - if (texture?.image) { - imageAsset = texture.image; - } - - // 先销毁spriteFrame(这会自动处理对texture的引用) - if (cacheItem.spriteFrame.isValid) { - cacheItem.spriteFrame.destroy(); - } - - // 再销毁texture - if (texture?.isValid) { - texture.destroy(); - } - - // 最后减少ImageAsset的引用计数 - if (imageAsset?.isValid) { - imageAsset.decRef(); - } - } catch (err) { - LogUtils.error(TAG, `销毁缓存项时发生错误`, err); - } - } - - /** - * 获取缓存统计信息 - */ - public getCacheStats(): { - total: number; - loaded: number; - loading: number; - failed: number; - } { - const stats = { total: 0, loaded: 0, loading: 0, failed: 0 }; - for (const [, cacheItem] of this._cache.entries()) { - stats.total++; - switch (cacheItem.loadState) { - case LoadState.LOADED: - stats.loaded++; - break; - case LoadState.LOADING: - stats.loading++; - break; - case LoadState.FAILED: - stats.failed++; - break; - } - } - - return stats; - } - - /** - * 清空所有缓存 - */ - public clearAllCache(): void { - for (const [, cacheItem] of this._cache.entries()) { - if (cacheItem.spriteFrame?.isValid) { - cacheItem.spriteFrame.destroy(); - } - } - this._cache.clear(); - LogUtils.log(TAG, "All cache cleared"); - } - - protected onDestroy(): void { - this.clearAllCache(); - super.onDestroy(); - } -} diff --git a/extensions/max-studio/assets/max-studio/core/res/ResManager.ts b/extensions/max-studio/assets/max-studio/core/res/ResManager.ts index 3b874ea..2e9d675 100644 --- a/extensions/max-studio/assets/max-studio/core/res/ResManager.ts +++ b/extensions/max-studio/assets/max-studio/core/res/ResManager.ts @@ -1,789 +1,287 @@ -// import { Asset, assetManager, AssetManager, resources } from "cc"; -// import LogUtils from "../utils/LogUtils"; -// import { singleton, Singleton } from "../Singleton"; -// import { Bundle } from "typescript"; - -import { Asset, assetManager, AssetManager, Constructor } from "cc"; +import { Asset, assetManager, AssetManager, Constructor, ImageAsset, SpriteFrame, Texture2D } from "cc"; import { Singleton } from "../Singleton"; import { StringUtils } from "../utils/StringUtils"; -// /** -// * 加载状态枚举 -// */ -// export enum LoadState { -// NONE = 0, -// LOADING = 1, -// LOADED = 2, -// FAILED = 3, -// } +const CACHE_EXPIRE_TIME = 30000; // 30s 缓存30s +const CACHE_CHECK_INTERVAL = 5000; // 5秒检查一次 -// /** -// * 加载任务接口 -// */ -// interface LoadTask { -// url: string; -// type: "bundle" | "asset"; -// bundleName?: string; -// assetPath?: string; -// promise?: Promise; -// assetType?: typeof Asset; -// resolve: (result: any) => void; -// reject: (error: Error) => void; -// } - -// /** -// * Bundle信息接口 -// */ -// interface BundleInfo { -// bundle: AssetManager.Bundle; -// state: LoadState; -// refCount: number; -// isRemote: boolean; -// } - -// /** -// * 资源信息接口 -// */ -// interface AssetInfo { -// asset: T; -// state: LoadState; -// refCount: number; -// bundleName: string; -// } - -// /** -// * 资源管理器 -// */ -// @singleton() -// export class ResManager extends Singleton { -// private static readonly TAG = "ResManager"; -// private static readonly DEFAULT_BUNDLE = "resources"; - -// // Bundle缓存 -// private bundleCache = new Map(); -// private loadingBundle = new Map(); - -// // 资源缓存 -// private assetCache = new Map>(); -// private loadingAsset = new Map(); - -// // 加载队列 -// private loadQueue: LoadTask[] = []; - -// // 当前正在加载的任务数量 -// private loadingCount = 0; - -// // 最大并发加载数量 -// private maxConcurrentLoads = 30; - -// // 是否正在处理队列 -// private isProcessingQueue = false; - -// // Bundle加载等待队列 -// private bundleWaitQueue = new Map>(); - -// // 资源加载等待队列 -// private assetWaitQueue = new Map>(); - -// protected async onInit() { -// this.initDefaultBundle(); -// } - -// /** -// * 初始化默认Bundle(resources) -// */ -// private initDefaultBundle(): void { -// this.bundleCache.set(ResManager.DEFAULT_BUNDLE, { -// bundle: resources, -// state: LoadState.LOADED, -// refCount: 1, -// isRemote: false, -// }); -// LogUtils.info(ResManager.TAG, "初始化默认Bundle: resources"); -// } - -// /** -// * 设置最大并发加载数量 -// * @param count 最大并发数 -// */ -// public setMaxConcurrentLoads(count: number): void { -// this.maxConcurrentLoads = Math.max(1, count); -// LogUtils.info(ResManager.TAG, `设置最大并发加载数量: ${this.maxConcurrentLoads}`); -// } - -// /** -// * 加载远端Bundle -// * @param bundleName Bundle名称 -// * @param url Bundle的远端URL -// * @returns Promise -// */ -// public async loadRemoteBundle(bundleName: string, url: string): Promise { -// // 检查缓存 -// if (this.bundleCache.has(bundleName)) { -// const cachedBundle = this.bundleCache.get(bundleName); -// cachedBundle.refCount++; -// return cachedBundle.bundle; -// } -// if (this.loadingBundle.has(bundleName)) { -// let bundle = (await this.loadingBundle.get(bundleName).promise) as AssetManager.Bundle; -// // bundle. -// // return (await bundle.promise) as AssetManager.Bundle; -// } - -// // 标记为加载中 -// this.bundleCache.set(bundleName, { -// bundle: null, -// state: LoadState.LOADING, -// refCount: 1, -// isRemote: true, -// }); - -// return new Promise((resolve, reject) => { -// const task: LoadTask = { -// url, -// type: "bundle", -// bundleName, -// resolve, -// reject, -// }; - -// this.addToQueue(task); -// }); -// } - -// /** -// * 加载本地Bundle -// * @param bundleName Bundle名称 -// * @returns Promise -// */ -// public async loadLocalBundle(bundleName: string): Promise { -// const cachedBundle = this.bundleCache.get(bundleName); - -// // 检查缓存 -// if (cachedBundle) { -// if (cachedBundle.state === LoadState.LOADED) { -// cachedBundle.refCount++; -// LogUtils.debug(ResManager.TAG, `使用缓存Bundle: ${bundleName}`); -// return cachedBundle.bundle; -// } else if (cachedBundle.state === LoadState.LOADING) { -// // 正在加载中,等待加载完成 -// return this.waitForBundleLoad(bundleName); -// } -// } - -// // 标记为加载中 -// this.bundleCache.set(bundleName, { -// bundle: null as any, -// state: LoadState.LOADING, -// refCount: 1, -// isRemote: false, -// }); - -// return new Promise((resolve, reject) => { -// const task: LoadTask = { -// url: bundleName, // 本地Bundle使用bundleName作为url -// type: "bundle", -// bundleName, -// resolve, -// reject, -// }; - -// this.addToQueue(task); -// }); -// } - -// /** -// * 加载资源 -// * @param assetPath 资源路径 -// * @param assetType 资源类型 -// * @param bundleName Bundle名称,不传则默认为resources -// * @returns Promise -// */ -// public async loadAsset( -// assetPath: string, -// assetType: typeof Asset, -// bundleName?: string, -// ): Promise { -// const targetBundle = bundleName || ResManager.DEFAULT_BUNDLE; -// const cacheKey = `${targetBundle}/${assetPath}`; -// const cachedAsset = this.assetCache.get(cacheKey); - -// // 检查缓存 -// if (cachedAsset) { -// if (cachedAsset.state === LoadState.LOADED) { -// cachedAsset.refCount++; -// LogUtils.debug(ResManager.TAG, `使用缓存资源: ${cacheKey}`); -// return cachedAsset.asset as T; -// } else if (cachedAsset.state === LoadState.LOADING) { -// // 正在加载中,等待加载完成 -// return this.waitForAssetLoad(cacheKey); -// } -// } - -// // 确保Bundle已加载 -// await this.ensureBundleLoaded(targetBundle); - -// // 标记为加载中 -// this.assetCache.set(cacheKey, { -// asset: null, -// state: LoadState.LOADING, -// refCount: 1, -// bundleName: targetBundle, -// }); - -// return new Promise((resolve, reject) => { -// const task: LoadTask = { -// url: cacheKey, -// type: "asset", -// bundleName: targetBundle, -// assetPath, -// assetType, -// resolve, -// reject, -// }; - -// this.addToQueue(task); -// }); -// } - -// /** -// * 确保Bundle已加载 -// * @param bundleName Bundle名称 -// */ -// private async ensureBundleLoaded(bundleName: string): Promise { -// const bundleInfo = this.bundleCache.get(bundleName); - -// if (!bundleInfo || bundleInfo.state === LoadState.NONE) { -// // Bundle不存在或状态为NONE,尝试加载本地Bundle -// LogUtils.info(ResManager.TAG, `Bundle ${bundleName} 不存在或未加载,尝试加载本地Bundle`); -// try { -// await this.loadLocalBundle(bundleName); -// } catch (err) { -// LogUtils.error( -// ResManager.TAG, -// `Bundle ${bundleName} 本地加载失败,请检查Bundle是否存在或调用 loadRemoteBundle 加载远程Bundle`, -// err, -// ); -// } -// return; -// } - -// if (bundleInfo.state === LoadState.FAILED) { -// throw new Error(`Bundle ${bundleName} 加载失败`); -// } - -// if (bundleInfo.state === LoadState.LOADING) { -// // Bundle正在加载中,等待加载完成 -// LogUtils.info(ResManager.TAG, `Bundle ${bundleName} 正在加载中,等待加载完成`); -// await this.waitForBundleLoad(bundleName); -// } -// } - -// /** -// * 释放Bundle -// * @param bundleName Bundle名称 -// */ -// public releaseBundle(bundleName: string): void { -// // 不允许释放默认Bundle -// if (bundleName === ResManager.DEFAULT_BUNDLE) { -// LogUtils.warn(ResManager.TAG, "不允许释放默认Bundle: resources"); -// return; -// } - -// const bundleInfo = this.bundleCache.get(bundleName); -// if (!bundleInfo) { -// LogUtils.warn(ResManager.TAG, `Bundle ${bundleName} 不存在`); -// return; -// } - -// bundleInfo.refCount--; -// LogUtils.debug(ResManager.TAG, `Bundle ${bundleName} 引用计数: ${bundleInfo.refCount}`); - -// if (bundleInfo.refCount <= 0) { -// // 释放Bundle中的所有资源 -// this.releaseAssetsInBundle(bundleName); - -// // 释放Bundle -// if (bundleInfo.bundle && bundleInfo.isRemote) { -// assetManager.removeBundle(bundleInfo.bundle); -// } - -// this.bundleCache.delete(bundleName); -// LogUtils.info(ResManager.TAG, `释放Bundle: ${bundleName}`); -// } -// } - -// /** -// * 释放资源 -// * @param assetPath 资源路径 -// * @param bundleName Bundle名称,不传则默认为resources -// */ -// public releaseAsset(assetPath: string, bundleName?: string): void { -// const targetBundle = bundleName || ResManager.DEFAULT_BUNDLE; -// const cacheKey = `${targetBundle}/${assetPath}`; -// const assetInfo = this.assetCache.get(cacheKey); - -// if (!assetInfo) { -// LogUtils.warn(ResManager.TAG, `资源 ${cacheKey} 不存在`); -// return; -// } - -// assetInfo.refCount--; -// LogUtils.debug(ResManager.TAG, `资源 ${cacheKey} 引用计数: ${assetInfo.refCount}`); - -// if (assetInfo.refCount <= 0) { -// if (assetInfo.asset) { -// assetInfo.asset.decRef(); -// } - -// this.assetCache.delete(cacheKey); -// LogUtils.info(ResManager.TAG, `释放资源: ${cacheKey}`); -// } -// } - -// /** -// * 清理所有缓存(保留默认Bundle) -// */ -// public clearAll(): void { -// // 释放所有资源 -// for (const [, assetInfo] of this.assetCache) { -// if (assetInfo.asset) { -// assetInfo.asset.decRef(); -// } -// } -// this.assetCache.clear(); - -// // 释放所有远端Bundle -// for (const [key, bundleInfo] of this.bundleCache) { -// if (key !== ResManager.DEFAULT_BUNDLE && bundleInfo.bundle && bundleInfo.isRemote) { -// assetManager.removeBundle(bundleInfo.bundle); -// } -// } - -// // 清空Bundle缓存,但保留默认Bundle -// const defaultBundle = this.bundleCache.get(ResManager.DEFAULT_BUNDLE); -// this.bundleCache.clear(); -// if (defaultBundle) { -// this.bundleCache.set(ResManager.DEFAULT_BUNDLE, defaultBundle); -// } - -// // 清空加载队列 -// this.loadQueue = []; -// this.loadingCount = 0; -// this.bundleWaitQueue.clear(); -// this.assetWaitQueue.clear(); - -// LogUtils.info(ResManager.TAG, "清理所有缓存完成"); -// } - -// /** -// * 获取缓存状态信息 -// */ -// public getCacheInfo(): { -// bundleCount: number; -// assetCount: number; -// queueLength: number; -// loadingCount: number; -// } { -// return { -// bundleCount: this.bundleCache.size, -// assetCount: this.assetCache.size, -// queueLength: this.loadQueue.length, -// loadingCount: this.loadingCount, -// }; -// } - -// /** -// * 添加任务到队列 -// * @param task 加载任务 -// */ -// private addToQueue(task: LoadTask): void { -// this.loadQueue.push(task); -// void this.processQueue(); -// } - -// /** -// * 处理加载队列 -// */ -// private async processQueue(): Promise { -// if (this.isProcessingQueue || this.loadingCount >= this.maxConcurrentLoads) { -// return; -// } - -// this.isProcessingQueue = true; - -// while (this.loadQueue.length > 0 && this.loadingCount < this.maxConcurrentLoads) { -// const task = this.loadQueue.shift(); -// if (!task) break; - -// this.loadingCount++; -// this.executeTask(task) -// .then(() => { -// this.loadingCount--; -// void this.processQueue(); -// }) -// .catch((err) => { -// LogUtils.error(ResManager.TAG, `队列任务执行失败: ${task.url}`, err); -// this.loadingCount--; -// void this.processQueue(); -// }); -// } - -// this.isProcessingQueue = false; -// } - -// /** -// * 执行加载任务 -// * @param task 加载任务 -// */ -// private async executeTask(task: LoadTask): Promise { -// try { -// await (task.type === "bundle" ? this.loadBundleTask(task) : this.loadAssetTask(task)); -// } catch (err) { -// LogUtils.error(ResManager.TAG, `加载任务失败: ${task.url}`, err); -// task.reject(err as Error); -// } -// } - -// /** -// * 执行Bundle加载任务 -// * @param task 加载任务 -// */ -// private async loadBundleTask(task: LoadTask): Promise { -// const { url, bundleName, resolve, reject } = task; -// if (!bundleName) { -// reject(new Error("Bundle名称不能为空")); -// return; -// } - -// const bundleInfo = this.bundleCache.get(bundleName); -// const isRemote = bundleInfo?.isRemote ?? false; - -// // 根据是否为远端Bundle选择不同的加载方式 -// if (isRemote) { -// // 远端Bundle加载 -// assetManager.loadBundle(url, (err, bundle) => { -// this.handleBundleLoadResult(bundleName, err, bundle, resolve, reject); -// }); -// } else { -// // 本地Bundle加载 -// assetManager.loadBundle(bundleName, (err, bundle) => { -// this.handleBundleLoadResult(bundleName, err, bundle, resolve, reject); -// }); -// } -// } - -// /** -// * 处理Bundle加载结果 -// * @param bundleName Bundle名称 -// * @param err 错误信息 -// * @param bundle Bundle对象 -// * @param resolve Promise resolve函数 -// * @param reject Promise reject函数 -// */ -// private handleBundleLoadResult( -// bundleName: string, -// err: Error | null, -// bundle: AssetManager.Bundle, -// resolve: (result: AssetManager.Bundle) => void, -// reject: (error: Error) => void, -// ): void { -// const bundleInfo = this.bundleCache.get(bundleName); - -// if (err) { -// LogUtils.error(ResManager.TAG, `Bundle加载失败: ${bundleName}`, err); -// if (bundleInfo) { -// bundleInfo.state = LoadState.FAILED; -// } - -// // 通知所有等待的任务 -// this.notifyBundleWaiters(bundleName, false, new Error(`Bundle加载失败: ${err.message}`)); -// reject(new Error(`Bundle加载失败: ${err.message}`)); -// return; -// } - -// if (bundleInfo) { -// bundleInfo.bundle = bundle; -// bundleInfo.state = LoadState.LOADED; -// } - -// LogUtils.info(ResManager.TAG, `Bundle加载成功: ${bundleName}`); - -// // 通知所有等待的任务 -// this.notifyBundleWaiters(bundleName, true, bundle); -// resolve(bundle); -// } - -// /** -// * 执行资源加载任务 -// * @param task 加载任务 -// */ -// private async loadAssetTask(task: LoadTask): Promise { -// const { url, bundleName, assetPath, assetType, resolve, reject } = task; -// if (!bundleName || !assetPath || !assetType) { -// reject(new Error("资源加载参数不完整")); -// return; -// } - -// const bundleInfo = this.bundleCache.get(bundleName); - -// if (!bundleInfo?.bundle) { -// reject(new Error(`Bundle ${bundleName} 不存在`)); -// return; -// } - -// bundleInfo.bundle.load(assetPath, assetType, (err, asset) => { -// const assetInfo = this.assetCache.get(url); - -// if (err) { -// LogUtils.error(ResManager.TAG, `资源加载失败: ${url}`, err); -// if (assetInfo) { -// assetInfo.state = LoadState.FAILED; -// } - -// // 通知所有等待的任务 -// this.notifyAssetWaiters(url, false, new Error(`资源加载失败: ${err.message}`)); -// reject(new Error(`资源加载失败: ${err.message}`)); -// return; -// } - -// if (assetInfo) { -// assetInfo.asset = asset; -// assetInfo.state = LoadState.LOADED; -// } - -// LogUtils.info(ResManager.TAG, `资源加载成功: ${url}`); - -// // 通知所有等待的任务 -// this.notifyAssetWaiters(url, true, asset); -// resolve(asset); -// }); -// } - -// /** -// * 等待Bundle加载完成 -// * @param bundleName Bundle名称 -// */ -// private async waitForBundleLoad(bundleName: string): Promise { -// return new Promise((resolve, reject) => { -// const bundleInfo = this.bundleCache.get(bundleName); - -// if (bundleInfo?.state === LoadState.LOADED) { -// bundleInfo.refCount++; -// resolve(bundleInfo.bundle); -// return; -// } - -// if (bundleInfo?.state === LoadState.FAILED) { -// reject(new Error(`Bundle ${bundleName} 加载失败`)); -// return; -// } - -// // 添加到等待队列 -// if (!this.bundleWaitQueue.has(bundleName)) { -// this.bundleWaitQueue.set(bundleName, []); -// } -// this.bundleWaitQueue.get(bundleName).push({ resolve, reject }); -// }); -// } - -// /** -// * 等待资源加载完成 -// * @param cacheKey 缓存键 -// */ -// private async waitForAssetLoad(cacheKey: string): Promise { -// return new Promise((resolve, reject) => { -// const assetInfo = this.assetCache.get(cacheKey); - -// if (assetInfo?.state === LoadState.LOADED) { -// assetInfo.refCount++; -// resolve(assetInfo.asset as T); -// return; -// } - -// if (assetInfo?.state === LoadState.FAILED) { -// reject(new Error(`资源 ${cacheKey} 加载失败`)); -// return; -// } - -// // 添加到等待队列 -// if (!this.assetWaitQueue.has(cacheKey)) { -// this.assetWaitQueue.set(cacheKey, []); -// } -// this.assetWaitQueue.get(cacheKey).push({ resolve, reject }); -// }); -// } - -// /** -// * 通知Bundle等待者 -// * @param bundleName Bundle名称 -// * @param success 是否成功 -// * @param result 结果或错误 -// */ -// private notifyBundleWaiters(bundleName: string, success: boolean, result: any): void { -// const waiters = this.bundleWaitQueue.get(bundleName); -// if (!waiters) return; - -// for (const waiter of waiters) { -// if (success) { -// const bundleInfo = this.bundleCache.get(bundleName); -// if (bundleInfo) { -// bundleInfo.refCount++; -// } -// waiter.resolve(result); -// } else { -// waiter.reject(result); -// } -// } - -// this.bundleWaitQueue.delete(bundleName); -// } - -// /** -// * 通知资源等待者 -// * @param cacheKey 缓存键 -// * @param success 是否成功 -// * @param result 结果或错误 -// */ -// private notifyAssetWaiters(cacheKey: string, success: boolean, result: any): void { -// const waiters = this.assetWaitQueue.get(cacheKey); -// if (!waiters) return; - -// for (const waiter of waiters) { -// if (success) { -// const assetInfo = this.assetCache.get(cacheKey); -// if (assetInfo) { -// assetInfo.refCount++; -// } -// waiter.resolve(result); -// } else { -// waiter.reject(result); -// } -// } - -// this.assetWaitQueue.delete(cacheKey); -// } - -// /** -// * 释放Bundle中的所有资源 -// * @param bundleName Bundle名称 -// */ -// private releaseAssetsInBundle(bundleName: string): void { -// const assetsToRemove: string[] = []; - -// for (const [key, assetInfo] of this.assetCache) { -// if (assetInfo.bundleName === bundleName) { -// if (assetInfo.asset) { -// assetInfo.asset.decRef(); -// } -// assetsToRemove.push(key); -// } -// } - -// for (const key of assetsToRemove) { -// this.assetCache.delete(key); -// } - -// LogUtils.debug(ResManager.TAG, `释放Bundle ${bundleName} 中的 ${assetsToRemove.length} 个资源`); -// } -// } export default class ResManager extends Singleton { - private loadingBundle = new Map>(); - private loadedBundle = new Map(); - private loadingAsset = new Map>(); - private loadedAsset = new Map(); + private loadingBundle = new Map>(); + private loadedBundleCache = new Map(); + private loadingAsset = new Map>(); + private loadedAssetCache = new Map(); - protected async onInit(): Promise {} + private loadingRemoteAsset = new Map>(); + private loadedRemoteAsset = new Map(); - public async loadBundle(bundleName: string): Promise { - if (this.loadedBundle.has(bundleName)) { - let bundle = this.loadedBundle.get(bundleName); - bundle.refCount++; - return bundle; + private loadedRemoteSpriteFrameCache = new Map(); + private loadingRemoteSpriteFrame = new Map>(); + + protected async onInit(): Promise { + setInterval(this.checkCache.bind(this), CACHE_CHECK_INTERVAL); + } + + public async loadBundle( + bundleName: string, + callBack?: (err: Error, bundle?: AssetManager.Bundle) => void, + ): Promise<{ err: Error; bundle?: AssetManager.Bundle }> { + if (this.loadedBundleCache.has(bundleName)) { + const bundle = this.loadedBundleCache.get(bundleName); + callBack?.(null, bundle); + return { err: null, bundle }; } if (this.loadingBundle.has(bundleName)) { - let bundle = await this.loadingBundle.get(bundleName); - if (bundle) { - bundle.refCount++; - } - return bundle; + const loadingInfo = await this.loadingBundle.get(bundleName); + callBack?.(loadingInfo.err, loadingInfo.bundle); + return loadingInfo; } - let promise = new Promise((resolve, reject) => { + const promise = new Promise<{ err: Error; bundle?: AssetManager.Bundle }>((resolve, _) => { assetManager.loadBundle(bundleName, (err, bundle) => { if (err) { console.error(`加载Bundle ${bundleName} 失败: ${err}`); - resolve(null); + resolve({ err, bundle: null }); } else { - resolve(bundle); + resolve({ err: null, bundle }); } }); }); this.loadingBundle.set(bundleName, promise); - let bundle = await promise; + const loadingInfo = await promise; this.loadingBundle.delete(bundleName); - if (bundle) { - bundle.refCount++; - this.loadedBundle.set(bundleName, bundle); + if (loadingInfo.err) { + callBack?.(loadingInfo.err, null); + return loadingInfo; } - return bundle; + if (loadingInfo.bundle) { + this.loadedBundleCache.set(bundleName, loadingInfo.bundle); + } + callBack?.(loadingInfo.err, loadingInfo.bundle); + return loadingInfo; } - public async loadAsset(options: { - bundle?: string; - path: string; - type?: typeof Asset; - }): Promise { - options = { type: Asset, bundle: "resources", ...options }; - let cacheKey = `${options.bundle}:${options.path}`; - if (this.loadedAsset.has(cacheKey)) { - const asset = this.loadedAsset.get(cacheKey); + public async loadAsset( + options: { + bundle?: string; + path: string; + type?: Constructor; + }, + callBack?: (err: Error, asset?: T) => void, + ): Promise<{ err: Error; asset?: T }> { + options = { type: (Asset) as Constructor, bundle: "resources", ...options }; + const cacheKey = `${options.bundle}:${options.path}`; + if (this.loadedAssetCache.has(cacheKey)) { + const asset = this.loadedAssetCache.get(cacheKey); if (asset) { asset.addRef(); - return asset as T; + callBack?.(null, asset as T); + return { err: null, asset: asset as T }; } } if (this.loadingAsset.has(cacheKey)) { - let asset = await this.loadingAsset.get(cacheKey); - if (asset) { - asset.addRef(); + const loadingInfo = await this.loadingAsset.get(cacheKey); + if (loadingInfo.asset) { + loadingInfo.asset.addRef(); } - return asset as T; + + callBack?.(loadingInfo.err, loadingInfo.asset as T); + return { err: loadingInfo.err, asset: loadingInfo.asset as T }; } - let promise = new Promise(async (resolve, reject) => { - let bundle = await this.loadBundle(options.bundle); - if (!bundle) { - console.error(`加载Bundle ${options.bundle} 失败`); - return null; - } - - bundle.load(options.path, options.type, (err, asset) => { - if (err) { - console.error(`加载Asset ${options.path} 失败: ${err}`); - resolve(null); - } else { - asset.cacheKey = cacheKey; - resolve(asset as T); + const promise = new Promise<{ err: Error; asset?: T }>((resolve, _) => { + this.loadBundle(options.bundle).then((loadingInfo) => { + if (loadingInfo.err) { + console.error(`加载Bundle ${options.bundle} 失败`); + resolve({ err: loadingInfo.err, asset: null }); } + loadingInfo.bundle.load(options.path, options.type, (err, asset) => { + if (err) { + console.error(`加载Asset ${options.path} 失败: ${err}`); + resolve({ err, asset: null }); + } else { + asset.cacheKey = cacheKey; + resolve({ err: null, asset: asset as T }); + } + }); }); }); this.loadingAsset.set(cacheKey, promise); - let asset = await promise; + const loadingInfo = await promise; this.loadingAsset.delete(cacheKey); - if (asset) { - asset.addRef(); - this.loadedAsset.set(cacheKey, asset); + if (loadingInfo.asset) { + loadingInfo.asset.addRef(); + this.loadedAssetCache.set(cacheKey, loadingInfo.asset); + } + callBack?.(loadingInfo.err, loadingInfo.asset as T); + return loadingInfo; + } + + public async loadRemoteAsset( + options: { + url: string; + ext?: string; + }, + callBack?: (err: Error, asset?: T) => void, + ): Promise<{ err: Error; asset?: T }> { + let cacheKey = options.url; + if (options.ext) { + cacheKey += `.${options.ext}`; + } + if (this.loadedRemoteAsset.has(cacheKey)) { + const asset = this.loadedRemoteAsset.get(cacheKey); + if (asset) { + asset.addRef(); + callBack?.(null, asset as T); + return { err: null, asset: asset as T }; + } + } + + const promise = new Promise<{ err: Error; asset?: T }>((resolve, _) => { + assetManager.loadRemote(options.url, { ext: options.ext }, (err, asset) => { + if (err) { + console.error(`加载Asset ${options.url} 失败: ${err}`); + resolve({ err, asset: null }); + } else { + asset.cacheKey = cacheKey; + resolve({ err: null, asset: asset as T }); + } + }); + }); + this.loadingRemoteAsset.set(cacheKey, promise); + const loadingInfo = await promise; + this.loadingRemoteAsset.delete(cacheKey); + if (loadingInfo.asset) { + loadingInfo.asset.addRef(); + this.loadedRemoteAsset.set(cacheKey, loadingInfo.asset); + } + callBack?.(loadingInfo.err, loadingInfo.asset as T); + return loadingInfo; + } + + public async loadRemoteSprite( + options: { + url: string; + ext?: string; + }, + callBack?: (err: Error, spriteFrame?: SpriteFrame) => void, + ): Promise<{ err: Error; spriteFrame?: SpriteFrame }> { + let cacheKey = options.url; + if (options.ext) { + cacheKey += `.${options.ext}`; + } + if (this.loadedRemoteSpriteFrameCache.has(cacheKey)) { + const spriteFrame = this.loadedRemoteSpriteFrameCache.get(cacheKey); + if (spriteFrame) { + spriteFrame.addRef(); + callBack?.(null, spriteFrame); + return { err: null, spriteFrame }; + } + } + if (this.loadingRemoteSpriteFrame.has(cacheKey)) { + const loadingInfo = await this.loadingRemoteSpriteFrame.get(cacheKey); + if (loadingInfo.spriteFrame) { + loadingInfo.spriteFrame.addRef(); + } + callBack?.(loadingInfo.err, loadingInfo.spriteFrame); + return loadingInfo; + } + + const loadingPromise = new Promise<{ err: Error; spriteFrame?: SpriteFrame }>((resolve, reject) => { + this.loadRemoteAsset({ url: options.url, ext: options.ext }, (err, asset: ImageAsset) => { + if (err) { + resolve({ err, spriteFrame: null }); + } else { + const texture = new Texture2D(); + texture.image = asset; + const spriteFrame = new SpriteFrame(); + spriteFrame.texture = texture; + spriteFrame.remoteUrl = options.url; + resolve({ err: null, spriteFrame }); + } + }); + }); + this.loadingRemoteSpriteFrame.set(cacheKey, loadingPromise); + const loadingInfo = await loadingPromise; + this.loadingRemoteSpriteFrame.delete(cacheKey); + if (loadingInfo.spriteFrame) { + loadingInfo.spriteFrame.addRef(); + this.loadedRemoteSpriteFrameCache.set(cacheKey, loadingInfo.spriteFrame); + } + callBack?.(loadingInfo.err, loadingInfo.spriteFrame); + return loadingInfo; + } + + private checkCache() { + const now = Date.now(); + const clearKeys = []; + for (const [key, asset] of this.loadedAssetCache) { + if (now - asset.lastAccessTime > CACHE_EXPIRE_TIME) { + if (asset instanceof SpriteFrame && !StringUtils.isEmpty(asset.remoteUrl)) { + // 远端贴图卸载 + + let texture = asset.texture as Texture2D; + let imageAsset: ImageAsset = null; + + // 如果已加入动态合图,必须取原始的Texture2D + if (asset.packable && asset.original) { + texture = asset.original._texture as Texture2D; + } + + // 获取ImageAsset引用 + if (texture?.image) { + imageAsset = texture.image; + } + + // 先销毁spriteFrame(这会自动处理对texture的引用) + if (asset.isValid) { + asset.destroy(); + } + + // 再销毁texture + if (texture?.isValid) { + texture.destroy(); + } + + this.releaseAsset(imageAsset); + } else { + asset.decRef(); + } + clearKeys.push(key); + } + } + if (clearKeys.length > 0) { + clearKeys.forEach((key) => { + this.loadedAssetCache.delete(key); + }); } - return asset as T; } public releaseAsset(asset: T): void { - let cacheKey = asset.cacheKey; - asset.decRef(); - if (!StringUtils.isEmpty(cacheKey) && this.loadedAsset.has(cacheKey)) { - this.loadedAsset.delete(cacheKey); + asset.decRef(false); + asset.lastAccessTime = Date.now(); + } + + /** + * ⚠️ 释放Bundle时,会释放Bundle中的所有Asset,包括正在使用的Asset。 + * @param bundleName + */ + public releaseBundle(bundleName: string) { + if (this.loadedBundleCache.has(bundleName)) { + const bundle = this.loadedBundleCache.get(bundleName); + bundle.releaseAll(); + this.loadedBundleCache.delete(bundleName); + const clearKeys = []; + for (const [key, asset] of this.loadedAssetCache) { + if (asset.cacheKey?.startsWith(`${bundleName}:`)) { + clearKeys.push(key); + } + } + if (clearKeys.length > 0) { + clearKeys.forEach((key) => { + this.loadedAssetCache.delete(key); + }); + } } } } diff --git a/extensions/max-studio/assets/max-studio/core/task/TaskManager.ts b/extensions/max-studio/assets/max-studio/core/task/TaskManager.ts index a45f6b6..bace9db 100644 --- a/extensions/max-studio/assets/max-studio/core/task/TaskManager.ts +++ b/extensions/max-studio/assets/max-studio/core/task/TaskManager.ts @@ -1,18 +1,11 @@ import LogUtils from "../utils/LogUtils"; import { singleton, Singleton } from "../Singleton"; -import { - ITaskConfig, - ITaskRuntimeData, - ITaskReward, - TaskStatus, - TaskType, - TaskEventType, -} from "./TaskData"; +import { ITaskConfig, ITaskRuntimeData, ITaskReward, TaskStatus, TaskType, TaskEventType } from "./TaskData"; import { TaskTypeManager } from "./TaskTypeManager"; import { EventManager } from "../event/EventManager"; import TimeManager from "../timer/TimerManager"; -import { ResManager } from "../res/ResManager"; import { JsonAsset } from "cc"; +import ResManager from "../res/ResManager"; const TAG = "TaskManager"; @@ -70,10 +63,11 @@ export class TaskManager extends Singleton { private async loadTaskConfigs(): Promise { // TODO: 从配置文件或服务器加载任务配置 LogUtils.info(TAG, "加载任务配置"); - const jsonAsset = await ResManager.getInstance().loadAsset( - "task-configs", - JsonAsset, - ); + const jsonAsset = await ResManager.getInstance().loadAsset({ + path: "task-configs", + type: JsonAsset, + bundle: "configs", + }); const taskConfigs = jsonAsset.json as Record; for (const taskType of Object.keys(taskConfigs)) { @@ -103,29 +97,20 @@ export class TaskManager extends Singleton { if ( runtimeData.status === TaskStatus.ACTIVE && runtimeData.activatedTime && - this.typeManager.isTaskExpired( - config, - runtimeData.activatedTime, - ) + this.typeManager.isTaskExpired(config, runtimeData.activatedTime) ) { this.expireTask(taskId); continue; } // 检查任务是否需要重置 - if ( - runtimeData.resetTime && - this.typeManager.shouldResetTask(config, runtimeData.resetTime) - ) { + if (runtimeData.resetTime && this.typeManager.shouldResetTask(config, runtimeData.resetTime)) { this.resetTask(taskId); continue; } // 检查任务是否可以激活 - if ( - runtimeData.status === TaskStatus.INACTIVE && - this.canActivateTask(config) - ) { + if (runtimeData.status === TaskStatus.INACTIVE && this.canActivateTask(config)) { this.activateTask(taskId); } } @@ -234,10 +219,7 @@ export class TaskManager extends Singleton { } if (runtimeData.status !== TaskStatus.INACTIVE) { - LogUtils.warn( - TAG, - `任务状态不正确,无法激活: ${taskId}, 当前状态: ${runtimeData.status}`, - ); + LogUtils.warn(TAG, `任务状态不正确,无法激活: ${taskId}, 当前状态: ${runtimeData.status}`); return false; } @@ -266,11 +248,7 @@ export class TaskManager extends Singleton { /** * 更新任务进度 */ - public updateTaskProgress( - taskId: string, - targetId: string, - progress: number, - ): boolean { + public updateTaskProgress(taskId: string, targetId: string, progress: number): boolean { try { const runtimeData = this.taskRuntimeData.get(taskId); if (!runtimeData) { @@ -279,10 +257,7 @@ export class TaskManager extends Singleton { } if (runtimeData.status !== TaskStatus.ACTIVE) { - LogUtils.debug( - TAG, - `任务状态不正确,无法更新进度: ${taskId}, 当前状态: ${runtimeData.status}`, - ); + LogUtils.debug(TAG, `任务状态不正确,无法更新进度: ${taskId}, 当前状态: ${runtimeData.status}`); return false; } @@ -293,10 +268,7 @@ export class TaskManager extends Singleton { } const oldProgress = target.currentCount; - target.currentCount = Math.min( - target.currentCount + progress, - target.targetCount, - ); + target.currentCount = Math.min(target.currentCount + progress, target.targetCount); EventManager.getInstance().emit( TaskEventType.TASK_PROGRESS_UPDATED, taskId, @@ -314,10 +286,7 @@ export class TaskManager extends Singleton { this.completeTask(taskId); } - LogUtils.debug( - TAG, - `任务进度已更新: ${taskId}, ${targetId}, ${target.currentCount}/${target.targetCount}`, - ); + LogUtils.debug(TAG, `任务进度已更新: ${taskId}, ${targetId}, ${target.currentCount}/${target.targetCount}`); return true; } catch (err) { LogUtils.error(TAG, `更新任务进度失败: ${taskId}`, err); @@ -337,10 +306,7 @@ export class TaskManager extends Singleton { } if (runtimeData.status !== TaskStatus.ACTIVE) { - LogUtils.warn( - TAG, - `任务状态不正确,无法完成: ${taskId}, 当前状态: ${runtimeData.status}`, - ); + LogUtils.warn(TAG, `任务状态不正确,无法完成: ${taskId}, 当前状态: ${runtimeData.status}`); return false; } @@ -377,10 +343,7 @@ export class TaskManager extends Singleton { } if (runtimeData.status !== TaskStatus.COMPLETED) { - LogUtils.warn( - TAG, - `任务状态不正确,无法领取奖励: ${taskId}, 当前状态: ${runtimeData.status}`, - ); + LogUtils.warn(TAG, `任务状态不正确,无法领取奖励: ${taskId}, 当前状态: ${runtimeData.status}`); return null; } @@ -398,10 +361,7 @@ export class TaskManager extends Singleton { }, ); - LogUtils.info( - TAG, - `任务奖励已领取: ${taskId}, 奖励数量: ${rewards.length}`, - ); + LogUtils.info(TAG, `任务奖励已领取: ${taskId}, 奖励数量: ${rewards.length}`); return rewards; } catch (err) { LogUtils.error(TAG, `领取任务奖励失败: ${taskId}`, err); @@ -495,12 +455,8 @@ export class TaskManager extends Singleton { // 检查前置任务 if (config.prerequisites) { for (const prerequisiteId of config.prerequisites) { - const prerequisiteData = - this.taskRuntimeData.get(prerequisiteId); - if ( - !prerequisiteData || - prerequisiteData.status !== TaskStatus.CLAIMED - ) { + const prerequisiteData = this.taskRuntimeData.get(prerequisiteId); + if (!prerequisiteData || prerequisiteData.status !== TaskStatus.CLAIMED) { return false; } } diff --git a/extensions/max-studio/assets/max-studio/core/ui/NetworkErrorDialog.ts b/extensions/max-studio/assets/max-studio/core/ui/NetworkErrorDialog.ts new file mode 100644 index 0000000..dbb2ae0 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/NetworkErrorDialog.ts @@ -0,0 +1,166 @@ +import { Component, Node, Label, Button, _decorator, tween, Vec3, UIOpacity } from "cc"; + +const { ccclass, property } = _decorator; + +/** + * 网络错误对话框选项 + */ +export interface NetworkErrorDialogOptions { + title?: string; + message?: string; + onRetry?: () => void; + onCancel?: () => void; +} + +/** + * 网络错误对话框组件 + */ +@ccclass("NetworkErrorDialog") +export class NetworkErrorDialog extends Component { + @property(Node) + private dialogPanel: Node = null; + + @property(Label) + private titleLabel: Label = null; + + @property(Label) + private messageLabel: Label = null; + + @property(Button) + private retryButton: Button = null; + + @property(Button) + private cancelButton: Button = null; + + @property(Node) + private maskBackground: Node = null; + + private options: NetworkErrorDialogOptions = null; + private maskOpacity: UIOpacity = null; + + onLoad() { + // 初始化时隐藏 + this.node.active = false; + + // 获取遮罩的UIOpacity组件 + if (this.maskBackground) { + this.maskOpacity = this.maskBackground.getComponent(UIOpacity); + if (!this.maskOpacity) { + this.maskOpacity = this.maskBackground.addComponent(UIOpacity); + } + } + + // 绑定按钮事件 + if (this.retryButton) { + this.retryButton.node.on(Button.EventType.CLICK, this.onRetryClick, this); + } + + if (this.cancelButton) { + this.cancelButton.node.on(Button.EventType.CLICK, this.onCancelClick, this); + } + + // 点击遮罩背景关闭对话框 + if (this.maskBackground) { + this.maskBackground.on(Node.EventType.TOUCH_END, this.onMaskClick, this); + } + } + + /** + * 显示对话框 + */ + public show(options: NetworkErrorDialogOptions): void { + this.options = options; + this.node.active = true; + + // 设置文本内容 + if (this.titleLabel) { + this.titleLabel.string = options.title || "网络连接失败"; + } + + if (this.messageLabel) { + this.messageLabel.string = options.message || "网络连接失败,请检查网络设置后重试"; + } + + // 播放显示动画 + if (this.dialogPanel) { + this.dialogPanel.setScale(0.5, 0.5, 1); + tween(this.dialogPanel) + .to(0.3, { scale: new Vec3(1, 1, 1) }, { easing: "backOut" }) + .start(); + } + + // 遮罩淡入 + if (this.maskOpacity) { + this.maskOpacity.opacity = 0; + tween(this.maskOpacity).to(0.2, { opacity: 180 }).start(); + } + } + + /** + * 隐藏对话框 + */ + public hide(): void { + // 播放隐藏动画 + if (this.dialogPanel) { + tween(this.dialogPanel) + .to(0.2, { scale: new Vec3(0.5, 0.5, 1) }, { easing: "backIn" }) + .start(); + } + + // 遮罩淡出 + if (this.maskOpacity) { + tween(this.maskOpacity) + .to(0.2, { opacity: 0 }) + .call(() => { + this.node.active = false; + this.options = null; + }) + .start(); + } else { + this.node.active = false; + this.options = null; + } + } + + /** + * 重试按钮点击 + */ + private onRetryClick(): void { + if (this.options?.onRetry) { + this.options.onRetry(); + } + this.hide(); + } + + /** + * 取消按钮点击 + */ + private onCancelClick(): void { + if (this.options?.onCancel) { + this.options.onCancel(); + } + this.hide(); + } + + /** + * 遮罩点击 + */ + private onMaskClick(): void { + // 可以选择是否允许点击遮罩关闭对话框 + // this.onCancelClick(); + } + + onDestroy() { + if (this.retryButton) { + this.retryButton.node.off(Button.EventType.CLICK, this.onRetryClick, this); + } + + if (this.cancelButton) { + this.cancelButton.node.off(Button.EventType.CLICK, this.onCancelClick, this); + } + + if (this.maskBackground) { + this.maskBackground.off(Node.EventType.TOUCH_END, this.onMaskClick, this); + } + } +} diff --git a/extensions/max-studio/assets/max-studio/core/ui/NetworkErrorDialog.ts.meta b/extensions/max-studio/assets/max-studio/core/ui/NetworkErrorDialog.ts.meta new file mode 100644 index 0000000..8ac3acd --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/NetworkErrorDialog.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "54075100-2d10-46a4-9f67-469788f8af2e", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/extensions/max-studio/assets/max-studio/core/ui/NetworkMask.ts b/extensions/max-studio/assets/max-studio/core/ui/NetworkMask.ts new file mode 100644 index 0000000..8285c52 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/NetworkMask.ts @@ -0,0 +1,120 @@ +import { Component, Node, Label, _decorator, tween, Vec3 } from "cc"; + +const { ccclass, property } = _decorator; + +/** + * 网络连接遮罩组件 + */ +@ccclass('NetworkMask') +export class NetworkMask extends Component { + @property(Node) + private loadingIcon: Node = null; + + @property(Label) + private messageLabel: Label = null; + + @property(Node) + private maskBackground: Node = null; + + private isShowing: boolean = false; + private rotationTween: any = null; + + onLoad() { + // 初始化时隐藏 + this.node.active = false; + } + + /** + * 显示网络遮罩 + */ + public show(message: string = "网络连接中..."): void { + if (this.isShowing) { + return; + } + + this.isShowing = true; + this.node.active = true; + + // 设置消息文本 + if (this.messageLabel) { + this.messageLabel.string = message; + } + + // 开始loading动画 + this.startLoadingAnimation(); + + // 淡入动画 + if (this.maskBackground) { + this.maskBackground.setScale(0.8, 0.8, 1); + tween(this.maskBackground) + .to(0.3, { scale: new Vec3(1, 1, 1) }, { easing: 'backOut' }) + .start(); + } + } + + /** + * 隐藏网络遮罩 + */ + public hide(): void { + if (!this.isShowing) { + return; + } + + this.isShowing = false; + + // 停止loading动画 + this.stopLoadingAnimation(); + + // 淡出动画 + if (this.maskBackground) { + tween(this.maskBackground) + .to(0.2, { scale: new Vec3(0.8, 0.8, 1) }, { easing: 'backIn' }) + .call(() => { + this.node.active = false; + }) + .start(); + } else { + this.node.active = false; + } + } + + /** + * 更新消息 + */ + public updateMessage(message: string): void { + if (this.messageLabel) { + this.messageLabel.string = message; + } + } + + /** + * 开始loading动画 + */ + private startLoadingAnimation(): void { + if (!this.loadingIcon) { + return; + } + + this.stopLoadingAnimation(); + + // 旋转动画 + this.rotationTween = tween(this.loadingIcon) + .by(1, { eulerAngles: new Vec3(0, 0, -360) }) + .repeatForever() + .start(); + } + + /** + * 停止loading动画 + */ + private stopLoadingAnimation(): void { + if (this.rotationTween) { + this.rotationTween.stop(); + this.rotationTween = null; + } + } + + onDestroy() { + this.stopLoadingAnimation(); + } +} \ No newline at end of file diff --git a/extensions/max-studio/assets/max-studio/core/ui/NetworkMask.ts.meta b/extensions/max-studio/assets/max-studio/core/ui/NetworkMask.ts.meta new file mode 100644 index 0000000..a2f9f05 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/NetworkMask.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "7969055e-3f6c-4f72-81cb-b30ac9a544a6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/extensions/max-studio/assets/max-studio/core/ui/UIDecorator.ts b/extensions/max-studio/assets/max-studio/core/ui/UIDecorator.ts index 59ebad2..bfa7526 100644 --- a/extensions/max-studio/assets/max-studio/core/ui/UIDecorator.ts +++ b/extensions/max-studio/assets/max-studio/core/ui/UIDecorator.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { _decorator, Button, Component, Constructor } from "cc"; import { EDITOR } from "cc/env"; import { StringUtils } from "../utils/StringUtils"; @@ -305,6 +306,7 @@ export enum UIType { TOAST = 2, GUIDE = 3, LOADING = 4, + SYSTEM = 5, } export interface UIConfigData { prefab: string; diff --git a/extensions/max-studio/assets/max-studio/core/ui/UIManager.ts b/extensions/max-studio/assets/max-studio/core/ui/UIManager.ts index a185e75..3aaebc5 100644 --- a/extensions/max-studio/assets/max-studio/core/ui/UIManager.ts +++ b/extensions/max-studio/assets/max-studio/core/ui/UIManager.ts @@ -1,9 +1,9 @@ -import { Camera, Constructor, error, find, game, Game, instantiate, js, Node, NodePool, Prefab, Widget } from "cc"; +import { Camera, Constructor, find, game, Game, instantiate, js, Node, NodePool, Prefab, Widget } from "cc"; import BaseUI from "./BaseUI"; -import { ResManager } from "../res/ResManager"; import { getUIConfigByClass, UIConfigData, UIType } from "./UIDecorator"; import { singleton, Singleton } from "../Singleton"; import LogUtils from "../utils/LogUtils"; +import ResManager from "../res/ResManager"; @singleton({ auto: true, @@ -12,8 +12,7 @@ export default class UIManager extends Singleton { private uiPrefabMap: Map = new Map(); private uiCacheMap: Map = new Map(); private uiShowMap: Map> = new Map(); - // 新增:跟踪正在加载中的UI - private uiLoadingMap: Map> = new Map(); + private uiLoadingMap: Map> = new Map(); private root: Node; private camera: Camera; private uiTypeMap: Map = new Map(); @@ -87,6 +86,11 @@ export default class UIManager extends Singleton { throw new Error(`${className} 没有配置 UIConfig 装饰器`); } + const uiPrefab: Prefab = await this.loadUIPrefab(config); + if (!uiPrefab) { + return null; + } + // 检查是否已经打开或正在加载中 if (!config.isMulti) { // 检查是否已经显示 @@ -95,35 +99,8 @@ export default class UIManager extends Singleton { return null; } } - - // 检查是否正在加载中 - if (this.uiLoadingMap.has(className)) { - LogUtils.warn("UIManager", `UI ${className} 正在加载中,不允许重复打开 请等待加载完成`); - await this.uiLoadingMap.get(className); - return this.openUI(classOrName, ...data); - } - - // 创建加载Promise并添加到加载映射中 - const loadingPromise = this.loadUIInternal(uiClass, className, config, ...data); - this.uiLoadingMap.set(className, loadingPromise); - - try { - const result = await loadingPromise; - return result; - } finally { - this.uiLoadingMap.delete(className); - } - } - - private async loadUIInternal( - uiClass: Constructor, - className: string, - config: UIConfigData, - ...data: unknown[] - ): Promise { let uiNode: Node = null; - // 检查缓存 if (this.uiCacheMap.has(className)) { const uiPool = this.uiCacheMap.get(className); if (uiPool.size() > 0) { @@ -132,26 +109,13 @@ export default class UIManager extends Singleton { } if (uiNode == null) { - // 加载预制体 - if (this.uiPrefabMap.has(config.prefab)) { - uiNode = instantiate(this.uiPrefabMap.get(config.prefab)); - } else { - const prefab = await ResManager.getInstance().loadAsset(config.prefab, Prefab, config.bundle); - if (prefab == null) { - error(`未找到名为 ${config.prefab} 的预制体`); - return null; - } - this.uiPrefabMap.set(config.prefab, prefab); - uiNode = instantiate(prefab); - } + uiNode = instantiate(uiPrefab); } - // 设置父节点 const typeNode = this.uiTypeMap.get(config.type); if (!typeNode) { throw new Error(`未找到类型为 ${config.type} 的容器节点`); } - uiNode.parent = typeNode; let baseUI = uiNode.getComponent(BaseUI); if (!baseUI) { @@ -159,7 +123,7 @@ export default class UIManager extends Singleton { } uiNode.active = true; - baseUI.onShow(...data); + void baseUI.onShow(...data); if (this.uiShowMap.has(className)) { this.uiShowMap.get(className).add(baseUI); @@ -171,6 +135,36 @@ export default class UIManager extends Singleton { return baseUI as T; } + private async loadUIPrefab(config: UIConfigData): Promise { + if (this.uiPrefabMap.has(config.prefab)) { + return this.uiPrefabMap.get(config.prefab); + } + if (this.uiLoadingMap.has(config.prefab)) { + const loadingPromise = await this.uiLoadingMap.get(config.prefab); + if (loadingPromise.err) { + console.error(`加载 UI 预制体失败 ${config.prefab}`, loadingPromise.err); + } + return loadingPromise.asset; + } + const loadingPromise = ResManager.getInstance().loadAsset({ + bundle: config.bundle, + path: config.prefab, + type: Prefab, + }); + this.uiLoadingMap.set(config.prefab, loadingPromise); + const { err, asset } = await loadingPromise; + if (err) { + console.error(`加载 UI 预制体失败 ${config.prefab}`, err); + return null; + } + + return asset; + } + + /** + * ⚠️ 关闭UI, 若需要关闭的UI 正在打开过程中,暂不支持关闭 + * @param classOrName 类名或实例 + */ public async closeUI(classOrName: Constructor | string | T) { let uiName: string; let uiClass: Constructor; @@ -206,6 +200,13 @@ export default class UIManager extends Singleton { this.uiCacheMap.get(uiName).put(ui.node); } else { ui.node.destroy(); + if (this.uiCacheMap.size <= 0) { + const prefab = this.uiPrefabMap.get(config.prefab); + if (prefab) { + ResManager.getInstance().releaseAsset(prefab); + this.uiPrefabMap.delete(config.prefab); + } + } } if (this.uiShowMap.has(uiName)) { this.uiShowMap.get(uiName).delete(ui); @@ -290,4 +291,8 @@ export default class UIManager extends Singleton { } } } + + public showLoading() {} + + public hideLoading() {} } diff --git a/extensions/max-studio/assets/max-studio/core/ui/default/DefaultNetworkMask.ts b/extensions/max-studio/assets/max-studio/core/ui/default/DefaultNetworkMask.ts new file mode 100644 index 0000000..8ce9377 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/default/DefaultNetworkMask.ts @@ -0,0 +1,12 @@ +import BaseUI from "../BaseUI"; +import { uiConfig, UIType } from "../UIDecorator"; +import { _decorator } from "cc"; +const { ccclass } = _decorator; + +@ccclass() +@uiConfig({ + prefab: "prefabs/uis/DefaultNetworkMask", + bundle: "framework-res", + type: UIType.LOADING, +}) +export default class DefaultNetworkMask extends BaseUI {} diff --git a/extensions/max-studio/assets/max-studio/core/ui/default/DefaultNetworkMask.ts.meta b/extensions/max-studio/assets/max-studio/core/ui/default/DefaultNetworkMask.ts.meta new file mode 100644 index 0000000..4ff340e --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/default/DefaultNetworkMask.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "23692c6a-0fd9-4f54-8507-835c598c48a2", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/extensions/max-studio/assets/max-studio/core/ui/index.ts b/extensions/max-studio/assets/max-studio/core/ui/index.ts new file mode 100644 index 0000000..beb03b8 --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/index.ts @@ -0,0 +1,8 @@ +export { NetworkMask } from "./NetworkMask"; +// export { NetworkErrorDialog, NetworkErrorDialogOptions } from "./NetworkErrorDialog"; +export { default as BaseUI } from "./BaseUI"; +export { default as BasePopup } from "./BasePopup"; +export { default as BaseLayer } from "./BaseLayer"; +export { default as BaseToast } from "./BaseToast"; +export { default as BaseLoading } from "./BaseLoading"; +export { default as UIManager } from "./UIManager"; diff --git a/extensions/max-studio/assets/max-studio/core/ui/index.ts.meta b/extensions/max-studio/assets/max-studio/core/ui/index.ts.meta new file mode 100644 index 0000000..90c6a6b --- /dev/null +++ b/extensions/max-studio/assets/max-studio/core/ui/index.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "5e9b4e13-31ec-4d07-8d53-d5e882ddede8", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/extensions/max-studio/assets/max-studio/core/utils/LogUtils.ts b/extensions/max-studio/assets/max-studio/core/utils/LogUtils.ts index d66c84c..a4a4fe1 100644 --- a/extensions/max-studio/assets/max-studio/core/utils/LogUtils.ts +++ b/extensions/max-studio/assets/max-studio/core/utils/LogUtils.ts @@ -1,4 +1,3 @@ -/* eslint-disable no-console */ import { DEV } from "cc/env"; /** @@ -30,8 +29,6 @@ export default class LogUtils { private static _prefix: string = "Max:"; private static _level: LogLevel = DEV ? LogLevel.DEBUG : LogLevel.ERROR; private static _enableTimestamp: boolean = true; - private static _enableStackTrace: boolean = true; - private static _enableColors: boolean = true; /** * 日志颜色配置 @@ -82,27 +79,6 @@ export default class LogUtils { this._level = level; } - /** - * 启用/禁用时间戳 - */ - public static enableTimestamp(enable: boolean): void { - this._enableTimestamp = enable; - } - - /** - * 启用/禁用堆栈跟踪 - */ - public static enableStackTrace(enable: boolean): void { - this._enableStackTrace = enable; - } - - /** - * 启用/禁用颜色 - */ - public static enableColors(enable: boolean): void { - this._enableColors = enable; - } - /** * 设置自定义颜色配置 */ @@ -122,28 +98,12 @@ export default class LogUtils { */ private static _getPrefix(): string { let prefix = this._prefix; - if (this._enableTimestamp) { - const now = new Date(); - const timestamp = `[${now.toLocaleTimeString()}]`; - prefix = `${timestamp} ${prefix}`; - } + const now = new Date(); + const timestamp = `[${now.toLocaleTimeString()}]`; + prefix = `${timestamp} ${prefix}`; return prefix; } - /** - * 获取堆栈信息 - */ - private static _getStackTrace(): string { - if (!this._enableStackTrace) return ""; - const stack = new Error().stack; - if (stack) { - const lines = stack.split("\n"); - // 跳过前几行(Error构造和当前方法) - return lines.slice(3, 5).join("\n"); - } - return ""; - } - /** * 生成 TAG 颜色 */ @@ -201,11 +161,9 @@ export default class LogUtils { const prefix = this._getPrefix(); // 判断是否应该使用 TAG 颜色(仅在警告等级以下) - const shouldUseTagColor = - tag && - (colorKey === "debug" || colorKey === "info" || colorKey === "log"); + const shouldUseTagColor = tag && (colorKey === "debug" || colorKey === "info" || colorKey === "log"); - if (this._enableColors && typeof window !== "undefined") { + if (typeof window !== "undefined") { // 浏览器环境,使用 CSS 样式 if (shouldUseTagColor) { // 有 TAG 且为警告等级以下,使用 TAG 颜色 @@ -217,18 +175,10 @@ export default class LogUtils { if (tag) { // 有 TAG 但是警告等级及以上,显示 TAG 但使用 LogLevel 颜色 const tagPrefix = `${prefix}[${tag}]`; - console[method]( - `%c${tagPrefix}`, - this._colors[colorKey], - ...remainingData, - ); + console[method](`%c${tagPrefix}`, this._colors[colorKey], ...remainingData); } else { // 无 TAG,使用 LogLevel 颜色 - console[method]( - `%c${prefix}`, - this._colors[colorKey], - ...remainingData, - ); + console[method](`%c${prefix}`, this._colors[colorKey], ...remainingData); } } } else { @@ -283,67 +233,7 @@ export default class LogUtils { */ public static error(...data: unknown[]): void { if (this._level <= LogLevel.ERROR) { - const stackTrace = this._getStackTrace(); this._logWithColor("error", "error", ...data); - if (stackTrace) { - console.error(stackTrace); - } - } - } - - /** - * 分组日志开始 - */ - public static group(label: string): void { - if (this._level <= LogLevel.DEBUG) { - const prefix = this._getPrefix(); - if (this._enableColors && typeof window !== "undefined") { - console.group(`%c${prefix}`, this._colors.info, label); - } else { - console.group(prefix, label); - } - } - } - - /** - * 分组日志结束 - */ - public static groupEnd(): void { - if (this._level <= LogLevel.DEBUG) { - console.groupEnd(); - } - } - - /** - * 表格形式输出 - */ - public static table(data: any): void { - if (this._level <= LogLevel.DEBUG) { - const prefix = this._getPrefix(); - if (this._enableColors && typeof window !== "undefined") { - console.log(`%c${prefix}`, this._colors.info, "Table data:"); - } else { - console.log(prefix, "Table data:"); - } - console.table(data); - } - } - - /** - * 性能计时开始 - */ - public static time(label: string): void { - if (this._level <= LogLevel.DEBUG) { - console.time(`${this._prefix} ${label}`); - } - } - - /** - * 性能计时结束 - */ - public static timeEnd(label: string): void { - if (this._level <= LogLevel.DEBUG) { - console.timeEnd(`${this._prefix} ${label}`); } } diff --git a/extensions/max-studio/assets/max-studio/core/utils/NodeUtils.ts b/extensions/max-studio/assets/max-studio/core/utils/NodeUtils.ts index 213b83c..f4e556d 100644 --- a/extensions/max-studio/assets/max-studio/core/utils/NodeUtils.ts +++ b/extensions/max-studio/assets/max-studio/core/utils/NodeUtils.ts @@ -3,6 +3,7 @@ import LogUtils from "./LogUtils"; import { EventTouch } from "cc"; import { Button } from "cc"; import { EDITOR } from "cc/env"; +import { StringUtils } from "./StringUtils"; const TAG = "NodeUtils"; @@ -28,21 +29,21 @@ export default class NodeUtils { try { // 扩展 Node 原型,添加 getOrAddComponent 方法 if (!Node.prototype.getOrAddComponent) { - Node.prototype.getOrAddComponent = function < - T extends Component, - >(classConstructor: new () => T): T { - let component = this.getComponent(classConstructor); + Node.prototype.getOrAddComponent = function ( + classConstructor: new () => T, + path?: string, + ): T { + const node = StringUtils.isEmpty(path) ? this : this.findChildRecursive(path); + if (node == null) { + LogUtils.error(TAG, `未找到路径为 ${path} 的子节点`); + return null; + } + let component = node.getComponent(classConstructor); if (!component) { - component = this.addComponent(classConstructor); - LogUtils.debug( - TAG, - `添加组件: ${classConstructor.name} 到节点: ${this.name}` - ); + component = node.addComponent(classConstructor); + LogUtils.debug(TAG, `添加组件: ${classConstructor.name} 到节点: ${node.name}`); } else { - LogUtils.debug( - TAG, - `获取现有组件: ${classConstructor.name} 从节点: ${this.name}` - ); + LogUtils.debug(TAG, `获取现有组件: ${classConstructor.name} 从节点: ${this.name}`); } return component; }; @@ -50,22 +51,14 @@ export default class NodeUtils { // 扩展 Node 原型,添加 getOrCreateChild 方法 if (!Node.prototype.getOrCreateChild) { - Node.prototype.getOrCreateChild = function ( - name: string - ): Node { + Node.prototype.getOrCreateChild = function (name: string): Node { let child = this.getChildByName(name); if (!child) { child = new Node(name); child.setParent(this); - LogUtils.debug( - TAG, - `创建子节点: ${name} 在节点: ${this.name}` - ); + LogUtils.debug(TAG, `创建子节点: ${name} 在节点: ${this.name}`); } else { - LogUtils.debug( - TAG, - `获取现有子节点: ${name} 从节点: ${this.name}` - ); + LogUtils.debug(TAG, `获取现有子节点: ${name} 从节点: ${this.name}`); } return child; }; @@ -73,22 +66,13 @@ export default class NodeUtils { // 扩展 Node 原型,添加 removeAllComponents 方法 if (!Node.prototype.removeAllComponents) { - Node.prototype.removeAllComponents = function ( - excludeTypes: (new () => Component)[] = [] - ): void { - const componentsToRemove = this.components.filter( - (comp) => { - return !excludeTypes.some( - (excludeType) => comp instanceof excludeType - ); - } - ); + Node.prototype.removeAllComponents = function (excludeTypes: (new () => Component)[] = []): void { + const componentsToRemove = this.components.filter((comp) => { + return !excludeTypes.some((excludeType) => comp instanceof excludeType); + }); for (const comp of componentsToRemove) { - LogUtils.debug( - TAG, - `移除组件: ${comp.constructor.name} 从节点: ${this.name}` - ); + LogUtils.debug(TAG, `移除组件: ${comp.constructor.name} 从节点: ${this.name}`); comp.destroy(); } }; @@ -96,18 +80,18 @@ export default class NodeUtils { // 扩展 Node 原型,添加 hasComponent 方法 if (!Node.prototype.hasComponent) { - Node.prototype.hasComponent = function ( - classConstructor: new () => T - ): boolean { + Node.prototype.hasComponent = function (classConstructor: new () => T): boolean { return this.getComponent(classConstructor) !== null; }; } // 扩展 Node 原型,添加 findChildRecursive 方法 if (!Node.prototype.findChildRecursive) { - Node.prototype.findChildRecursive = function ( - name: string - ): Node | null { + Node.prototype.findChildRecursive = function (name: string): Node | null { + if (StringUtils.isEmpty(name)) { + LogUtils.warn(TAG, `findChildRecursive 方法参数 name 为空`); + return null; + } // 先在直接子节点中查找 const directChild = this.getChildByName(name); if (directChild) { @@ -127,31 +111,18 @@ export default class NodeUtils { } if (!Node.prototype.onClick) { - Node.prototype.onClick = function ( - callback: (event: EventTouch) => void, - target?: any - ): void { + Node.prototype.onClick = function (callback: (event: EventTouch) => void, target?: any): void { if (callback == null) { - LogUtils.warn( - TAG, - `节点 ${this.name} 点击事件回调为空` - ); + LogUtils.warn(TAG, `节点 ${this.name} 点击事件回调为空`); return; } if (this.hasComponent(Button)) { const button: Button = this.getComponent(Button); // 避免按钮事件重复监听 button.node.targetOff(target); - button.node.on( - Button.EventType.CLICK, - callback, - target - ); + button.node.on(Button.EventType.CLICK, callback, target); } else { - LogUtils.warn( - TAG, - `节点 ${this.name} 没有 Button 组件,无法添加点击事件` - ); + LogUtils.warn(TAG, `节点 ${this.name} 没有 Button 组件,无法添加点击事件`); } }; } @@ -177,10 +148,7 @@ export default class NodeUtils { targetNode.setParent(parent); LogUtils.debug(TAG, `创建节点: ${name} 在父节点: ${parent.name}`); } else { - LogUtils.debug( - TAG, - `找到现有节点: ${name} 在父节点: ${parent.name}` - ); + LogUtils.debug(TAG, `找到现有节点: ${name} 在父节点: ${parent.name}`); } return targetNode; @@ -192,22 +160,13 @@ export default class NodeUtils { * @param classConstructor 组件类构造函数 * @returns 组件实例 */ - public static getOrAddComponent( - node: Node, - classConstructor: new () => T - ): T { + public static getOrAddComponent(node: Node, classConstructor: new () => T): T { let component = node.getComponent(classConstructor); if (!component) { component = node.addComponent(classConstructor); - LogUtils.debug( - TAG, - `添加组件: ${classConstructor.name} 到节点: ${node.name}` - ); + LogUtils.debug(TAG, `添加组件: ${classConstructor.name} 到节点: ${node.name}`); } else { - LogUtils.debug( - TAG, - `获取现有组件: ${classConstructor.name} 从节点: ${node.name}` - ); + LogUtils.debug(TAG, `获取现有组件: ${classConstructor.name} 从节点: ${node.name}`); } return component; } @@ -241,21 +200,13 @@ export default class NodeUtils { * @param node 目标节点 * @param excludeTypes 要保留的组件类型数组 */ - public static cleanComponents( - node: Node, - excludeTypes: (new () => Component)[] = [] - ): void { + public static cleanComponents(node: Node, excludeTypes: (new () => Component)[] = []): void { const componentsToRemove = node.components.filter((comp) => { - return !excludeTypes.some( - (excludeType) => comp instanceof excludeType - ); + return !excludeTypes.some((excludeType) => comp instanceof excludeType); }); for (const comp of componentsToRemove) { - LogUtils.debug( - TAG, - `移除组件: ${comp.constructor.name} 从节点: ${node.name}` - ); + LogUtils.debug(TAG, `移除组件: ${comp.constructor.name} 从节点: ${node.name}`); comp.destroy(); } } @@ -290,10 +241,7 @@ export default class NodeUtils { * @param classConstructor 组件类构造函数 * @returns 是否包含该组件 */ - public static hasComponent( - node: Node, - classConstructor: new () => T - ): boolean { + public static hasComponent(node: Node, classConstructor: new () => T): boolean { return node.getComponent(classConstructor) !== null; } } @@ -304,10 +252,11 @@ declare module "cc" { /** * 获取或添加组件 * 如果节点上已有该组件则直接返回,否则添加新组件 + * @param classConstructor 组件类构造函数 + * @param path 组件路径(可选) + * @returns 组件实例 */ - getOrAddComponent( - classConstructor: new () => T - ): T; + getOrAddComponent(classConstructor: new () => T, path?: string): T; /** * 获取或创建子节点 @@ -324,9 +273,7 @@ declare module "cc" { /** * 检查是否包含指定组件 */ - hasComponent( - classConstructor: new () => T - ): boolean; + hasComponent(classConstructor: new () => T): boolean; /** * 递归查找子节点 diff --git a/extensions/max-studio/assets/max-studio/hotupdate/HotupdateInstance.ts b/extensions/max-studio/assets/max-studio/hotupdate/HotupdateInstance.ts index a9d2836..2713afe 100644 --- a/extensions/max-studio/assets/max-studio/hotupdate/HotupdateInstance.ts +++ b/extensions/max-studio/assets/max-studio/hotupdate/HotupdateInstance.ts @@ -1,7 +1,6 @@ -import { native, Asset, JsonAsset } from "cc"; +import { native } from "cc"; import { HotupdateState } from "./HotupdateState"; import { sys } from "cc"; -import { resources } from "cc"; import { HotupdateEventCallback, HotupdateEventData } from "./HotupdateEvent"; import HotupdateConfig from "./HotupdateConfig"; import { EDITOR, NATIVE } from "cc/env"; @@ -27,11 +26,11 @@ export class HotupdateInstance { private _am: native.AssetsManager; private versionCompareHandle = (versionA: string, versionB: string) => { - let vA = versionA.split("."); - let vB = versionB.split("."); + const vA = versionA.split("."); + const vB = versionB.split("."); for (let i = 0; i < vA.length; ++i) { - let a = parseInt(vA[i]); - let b = parseInt(vB[i] || "0"); + const a = parseInt(vA[i]); + const b = parseInt(vB[i] || "0"); if (a === b) { continue; } else { @@ -100,7 +99,7 @@ export class HotupdateInstance { } public async checkUpdate(config: HotupdateConfig) { - let event: HotupdateEventData = { + const event: HotupdateEventData = { state: HotupdateState.UPDATE_IDLE, }; @@ -125,7 +124,7 @@ export class HotupdateInstance { return; } - if (!!this._am) { + if (this._am) { this._am = null; } @@ -137,10 +136,10 @@ export class HotupdateInstance { this.versionCompareHandle, ); this._am.setVerifyCallback((path: string, asset: any) => { - let compressed = asset.compressed; - let expectedMD5 = asset.md5; - let relativePath = asset.path; - let size = asset.size; + const compressed = asset.compressed; + const expectedMD5 = asset.md5; + const relativePath = asset.path; + const size = asset.size; if (compressed) { return true; } else { @@ -170,7 +169,7 @@ export class HotupdateInstance { this._am.update(); this._updating = true; } else { - let event: HotupdateEventData = { + const event: HotupdateEventData = { state: HotupdateState.UPDATE_FAILED, }; this.emitEvent(event); @@ -195,7 +194,7 @@ export class HotupdateInstance { private checkCb(event: native.EventAssetsManager) { console.log("checkCb", event.getEventCode(), event.getMessage()); - let data: HotupdateEventData = { + const data: HotupdateEventData = { state: HotupdateState.UPDATE_IDLE, }; @@ -225,7 +224,7 @@ export class HotupdateInstance { console.log("updateCb", event.getEventCode(), event.getMessage()); let finished = false; - let data: HotupdateEventData = { + const data: HotupdateEventData = { state: HotupdateState.UPDATE_PROGRESSION, }; @@ -247,8 +246,8 @@ export class HotupdateInstance { finished = true; if (this._setSearchPath) { - let searchPaths = native.fileUtils.getSearchPaths(); - let newPaths = this._am.getLocalManifest().getSearchPaths(); + const searchPaths = native.fileUtils.getSearchPaths(); + const newPaths = this._am.getLocalManifest().getSearchPaths(); for (let i = 0; i < newPaths.length; i++) { if (searchPaths.indexOf(newPaths[i]) === -1) { // 使用 indexOf 替代 includes @@ -280,7 +279,7 @@ export class HotupdateInstance { } private emitEvent(data: HotupdateEventData) { - if (!!this._hotupdateCallback) { + if (this._hotupdateCallback) { this._hotupdateCallback(data); } } @@ -342,18 +341,18 @@ export class HotupdateInstance { private async loadRemoteManifest(config: HotupdateConfig) { return new Promise((resolve, _) => { - let url = config.packageUrl + "/project.manifest"; - let xhr = new XMLHttpRequest(); + const url = config.packageUrl + "/project.manifest"; + const xhr = new XMLHttpRequest(); xhr.open("GET", url, true); xhr.onreadystatechange = () => { if (xhr.readyState == 4 && xhr.status > 0) { try { if (xhr.status >= 200 && xhr.status < 400) { - let manifestStr = JSON.parse(xhr.responseText); + const manifestStr = JSON.parse(xhr.responseText); manifestStr.packageUrl = config.packageUrl; manifestStr.remoteManifestUrl = config.packageUrl + "/project.manifest"; manifestStr.remoteVersionUrl = config.packageUrl + "/version.manifest"; - let manifestPath = + const manifestPath = native.fileUtils.getWritablePath() + config.storageDirPath + "/remote.manifest"; native.fileUtils.writeStringToFile(JSON.stringify(manifestStr), manifestPath); console.log("已创建远程 manifest:", manifestPath, JSON.stringify(manifestStr)); @@ -380,8 +379,8 @@ export class HotupdateInstance { private async _parseLocalManifest(localUrl: string, remoteUrl: string) { if (native.fileUtils.isFileExist(localUrl)) { - let manifestStr = native.fileUtils.getStringFromFile(localUrl); - let manifest = JSON.parse(manifestStr); + const manifestStr = native.fileUtils.getStringFromFile(localUrl); + const manifest = JSON.parse(manifestStr); manifest.packageUrl = remoteUrl; manifest.remoteManifestUrl = remoteUrl + "/project.manifest"; manifest.remoteVersionUrl = remoteUrl + "/version.manifest"; diff --git a/extensions/max-studio/package.json b/extensions/max-studio/package.json index 045c915..22866e7 100755 --- a/extensions/max-studio/package.json +++ b/extensions/max-studio/package.json @@ -5,15 +5,16 @@ "version": "1.0.1-alpha.1", "author": "han_han9", "editor": ">=3.8.5", - "scripts": { - "preinstall": "node ./scripts/preinstall.js", - "prepare": "husky install", - "build": "tsc", - "watch": "tsc -w", - "publish:dev": "node ./scripts/publish.js dev", - "publish:prod": "node ./scripts/publish.js prod", - "prepublishOnly": "npm run build" - }, + "scripts": { + "preinstall": "node ./scripts/preinstall.js", + "prepare": "husky install", + "build": "tsc", + "watch": "tsc -w", + "publish:dev": "node ./scripts/publish.js dev", + "publish:prod": "node ./scripts/publish.js prod", + "prepublishOnly": "npm run build", + "gen:configs": "ts-node ./scripts/generate-configs.ts" + }, "publishConfig": { "access": "public" }, diff --git a/extensions/max-studio/scripts/generate-configs.ts b/extensions/max-studio/scripts/generate-configs.ts new file mode 100644 index 0000000..03d8942 --- /dev/null +++ b/extensions/max-studio/scripts/generate-configs.ts @@ -0,0 +1,661 @@ +/** + * Excel 配置生成脚本(增强版) + * + * 功能: + * - 将 /excels 目录下的 .xlsx 文件转换为 JSON(assets/configs/generated/data) + * - 依据表头(字段:类型 / 可选? / 默认=值 / //备注)生成 TS 数据类与解析函数(assets/configs/generated/core) + * - 从 __enums__.xlsx 生成 Enums.ts;从 __beans__.xlsx 生成 Beans.ts 与解析函数 + * - 生成 Manager.ts(缺失时),支持唯一索引 getByXxx + * - 生成时进行唯一约束校验与跨表引用校验 + * + * 使用: + * - 在 extensions/max-studio/package.json 中暴露脚本:"gen:configs" + * - 运行:npm run gen:configs + */ +import path from "path"; +import fs from "fs"; +import { ensureDirSync, writeFileSync, existsSync } from "fs-extra"; +import xlsx from "xlsx"; + +type PrimitiveType = "number" | "string" | "boolean"; +type CcType = "Color" | "Vec2" | "Vec3" | "Vec4" | "Size" | "Rect" | "Quat" | "Mat4"; + +interface FieldDef { + name: string; + type: string; // number|string|boolean|CcType|Enum|Bean + // 原始类型标识,用于从 Excel 表头保留 `int` / `float` 信息 + rawType?: string; + isArray: boolean; + optional: boolean; + defaultValue?: string; + comment?: string; + unique?: boolean; + refTarget?: string; // 跨表引用目标(表名) +} + +interface TableDef { + name: string; // e.g. PetConfig + fields: FieldDef[]; +} + +interface EnumItem { + name: string; + value: number; + comment?: string; +} +interface EnumDef { + name: string; + items: EnumItem[]; +} + +interface BeanDef { + name: string; + fields: FieldDef[]; +} + +const PROJECT_ROOT = path.resolve(__dirname, "../../.."); +const EXCEL_DIR = path.join(PROJECT_ROOT, "excels"); +const OUTPUT_CORE_DIR = path.join(PROJECT_ROOT, "assets/configs/generated/core"); +const OUTPUT_DATA_DIR = path.join(PROJECT_ROOT, "assets/configs/generated/data"); + +const CC_COMPLEX_TYPES: ReadonlySet = new Set([ + "Color", + "Vec2", + "Vec3", + "Vec4", + "Size", + "Rect", + "Quat", + "Mat4", +]); + +function log(...args: any[]) { + // 统一日志输出 + + console.log("[gen-configs]", ...args); +} + +function parseHeaderCell(cell: string): FieldDef | null { + const raw = cell?.trim(); + if (!raw) return null; + + const [left, commentRaw] = raw.split("//"); + const comment = commentRaw?.trim(); + + const [namePartRaw, typePartRaw = ""] = left.split(":").map((v) => v.trim()); + const optional = /\?$/.test(namePartRaw); + const name = namePartRaw.replace(/\?$/, ""); + + const [typeIdentRaw, defaultRaw] = typePartRaw.split("=").map((v) => v.trim()); + let typeIdent = typeIdentRaw || (name === "id" ? "number" : "string"); + const isArray = /\[\]$/.test(typeIdent); + if (isArray) typeIdent = typeIdent.replace(/\[\]$/, ""); + + let refTarget: string | undefined; + if (/^Ref:/i.test(typeIdent)) { + refTarget = typeIdent.replace(/^Ref:/i, ""); + typeIdent = "number"; // 引用用目标 id(数值) + } + + // 规范 Cocos 原生类型:去掉 "cc." 前缀 + if (/^cc\./i.test(typeIdent)) { + typeIdent = typeIdent.replace(/^cc\./i, ""); + } + + // 记录原始数值类型,并将 int/float 规范化为 TS 的 number + const rawType = /^(int|float)$/i.test(typeIdent) ? typeIdent.toLowerCase() : undefined; + if (rawType === "int" || rawType === "float") { + typeIdent = "number"; + } + + const unique = /\[\s*unique\s*\]/i.test(comment || ""); + const refMatch = (comment || "").match(/\[\s*ref\s*=\s*([A-Za-z0-9_]+)\s*\]/i); + if (refMatch) refTarget = refMatch[1]; + + const def: FieldDef = { + name, + type: typeIdent, + rawType, + isArray, + optional, + defaultValue: defaultRaw || undefined, + comment, + unique, + refTarget, + }; + return def; +} + +function readWorkbookTables(filePath: string): { table: TableDef; rows: any[] } { + const workbook = xlsx.readFile(filePath); + const sheetName = workbook.SheetNames[0]; + const sheet = workbook.Sheets[sheetName]; + + // 读取为二维数组,支持三行表头:第一行字段名、第二行类型、第三行备注 + const rows2d = xlsx.utils.sheet_to_json(sheet, { header: 1, defval: "" }) as any[][]; + const headerNames = (rows2d[0] || []).map((v) => String(v ?? "").trim()); + const headerTypes = (rows2d[1] || []).map((v) => String(v ?? "").trim()); + const headerComments = (rows2d[2] || []).map((v) => String(v ?? "").trim()); + + const fields: FieldDef[] = []; + for (let i = 0; i < headerNames.length; i++) { + const nameRaw = headerNames[i]; + if (!nameRaw) continue; + const typeSpecRaw = headerTypes[i] || ""; + const commentRaw = headerComments[i] || ""; + + // 解析类型行:支持 Ref:Table、数组[]、默认值=xxx、可选?(写在类型末尾) + let typeIdent = typeSpecRaw; + let defaultValue: string | undefined; + const optional = /\?$/.test(typeIdent); + if (optional) typeIdent = typeIdent.replace(/\?$/, ""); + const isArray = /\[\]$/.test(typeIdent); + if (isArray) typeIdent = typeIdent.replace(/\[\]$/, ""); + const parts = typeIdent.split("="); + if (parts.length > 1) { + typeIdent = parts[0].trim(); + defaultValue = parts.slice(1).join("=").trim(); + } + + let refTarget: string | undefined; + if (/^Ref:/i.test(typeIdent)) { + refTarget = typeIdent.replace(/^Ref:/i, ""); + typeIdent = "number"; // 引用以目标 id(数值)表达 + } + + // 规范 Cocos 原生类型:去掉 "cc." 前缀 + if (/^cc\./i.test(typeIdent)) { + typeIdent = typeIdent.replace(/^cc\./i, ""); + } + + // 记录原始数值类型,并将 int/float 规范化为 TS 的 number + const rawType = /^(int|float)$/i.test(typeIdent) ? typeIdent.toLowerCase() : undefined; + if (rawType === "int" || rawType === "float") { + typeIdent = "number"; + } + const unique = /\[\s*unique\s*\]/i.test(commentRaw); + const refMatch = commentRaw.match(/\[\s*ref\s*=\s*([A-Za-z0-9_]+)\s*\]/i); + if (refMatch) refTarget = refMatch[1]; + + const name = String(nameRaw).replace(/\?$/, ""); + const type = typeIdent || (name === "id" ? "number" : "string"); + + fields.push({ + name, + type, + rawType, + isArray, + optional, + defaultValue, + comment: commentRaw || undefined, + unique, + refTarget, + }); + } + + // 将第 4 行开始的数据行转换为对象数组(按第一行字段名映射) + const dataRows: any[] = []; + for (let r = 3; r < rows2d.length; r++) { + const rowArr = rows2d[r] || []; + // 空行跳过 + if (rowArr.every((v: any) => String(v ?? "").trim() === "")) continue; + const obj: Record = {}; + for (let c = 0; c < headerNames.length; c++) { + const key = headerNames[c]; + if (!key) continue; + obj[key.replace(/\?$/, "")] = rowArr[c]; + } + dataRows.push(obj); + } + + const tableName = path.basename(filePath, path.extname(filePath)); + return { table: { name: tableName, fields }, rows: dataRows }; +} + +function writeFileSafe(filePath: string, content: string) { + ensureDirSync(path.dirname(filePath)); + writeFileSync(filePath, content, { encoding: "utf-8" }); +} + +function generateEnumsTs(enums: EnumDef[]): string { + const parts: string[] = []; + parts.push("/** 自动生成的枚举定义 */"); + for (const e of enums) { + parts.push(`export enum ${e.name} {`); + for (const item of e.items) { + const comment = item.comment ? ` // ${item.comment}` : ""; + parts.push(` ${item.name} = ${item.value},${comment}`); + } + parts.push("}\n"); + } + return parts.join("\n"); +} + +function readEnumsExcel(absPath: string): EnumDef[] { + const workbook = xlsx.readFile(absPath); + const results: EnumDef[] = []; + for (const sheetName of workbook.SheetNames) { + const sheet = workbook.Sheets[sheetName]; + const rows: any[] = xlsx.utils.sheet_to_json(sheet, { defval: "" }); + + // 检测是否为分组格式:包含 EnumName/ValueName/Value/Comment 列 + const hasGrouped = + rows.length > 0 && + Object.keys(rows[0]).some((k) => /^(EnumName|enumName)$/i.test(String(k))) && + Object.keys(rows[0]).some((k) => /^(ValueName|valueName|Name|name)$/i.test(String(k))) && + Object.keys(rows[0]).some((k) => /^(Value|value)$/i.test(String(k))); + + if (hasGrouped) { + const enumMap = new Map(); + let currentEnum = ""; + for (const row of rows) { + const enumNameRaw = String(row.EnumName ?? row.enumName ?? "").trim(); + if (enumNameRaw) currentEnum = enumNameRaw; + if (!currentEnum) continue; + + const valueName = String(row.ValueName ?? row.valueName ?? row.Name ?? row.name ?? "").trim(); + if (!valueName) continue; + + const valueRaw = row.Value ?? row.value ?? 0; + const value = Number(valueRaw); + const comment = String(row.Comment ?? row.comment ?? "").trim(); + + if (!enumMap.has(currentEnum)) enumMap.set(currentEnum, []); + enumMap.get(currentEnum)!.push({ name: valueName, value, comment }); + } + for (const [name, items] of enumMap.entries()) { + results.push({ name, items }); + } + } else { + // 兼容每个 Sheet 一个枚举:使用 Name/Value/Comment + const items: EnumItem[] = []; + for (const row of rows) { + const name = String(row.ValueName ?? row.valueName ?? row.Name ?? row.name ?? "").trim(); + if (!name) continue; + const valueRaw = row.Value ?? row.value ?? 0; + const value = Number(valueRaw); + const comment = String(row.Comment ?? row.comment ?? "").trim(); + items.push({ name, value, comment }); + } + results.push({ name: sheetName, items }); + } + } + return results; +} + +function generateBeansTs(beans: BeanDef[]): string { + const usedCcTypes = new Set(); + for (const b of beans) { + for (const f of b.fields) { + const base = f.type; + if (CC_COMPLEX_TYPES.has(base)) usedCcTypes.add(base); + } + } + const ccImports = usedCcTypes.size > 0 ? `import { ${Array.from(usedCcTypes).join(", ")} } from 'cc';\n\n` : ""; + const parts: string[] = []; + parts.push(`${ccImports}import { ConfigParseUtils } from './ConfigParseUtils';`); + for (const b of beans) { + parts.push(`\n/** Bean: ${b.name} */`); + const ifaceLines: string[] = []; + for (const f of b.fields) { + const tsType = `${f.type}${f.isArray ? "[]" : ""}`; + ifaceLines.push(` ${f.name}${f.optional ? "?" : ""}: ${tsType};`); + } + parts.push(`export interface ${b.name} {\n${ifaceLines.join("\n")}\n}`); + // 解析函数 + const parseExprs: string[] = []; + for (const f of b.fields) { + const expr = buildParseExpression(f, new Set(), new Set(), true); + parseExprs.push(` ${f.name}: ${expr},`); + } + parts.push( + `export function parse${b.name}(data: any): ${b.name} {\n return {\n${parseExprs.join("\n")}\n };\n}`, + ); + } + return parts.join("\n"); +} + +function readBeansExcel(absPath: string): BeanDef[] { + const workbook = xlsx.readFile(absPath); + const results: BeanDef[] = []; + for (const sheetName of workbook.SheetNames) { + const sheet = workbook.Sheets[sheetName]; + const headerRow = xlsx.utils.sheet_to_json(sheet, { header: 1 })[0] as string[]; + const fields: FieldDef[] = []; + for (const cell of headerRow) { + const def = parseHeaderCell(String(cell || "")); + if (def) fields.push(def); + } + results.push({ name: sheetName, fields }); + } + return results; +} + +function isPrimitive(t: string): t is PrimitiveType { + return t === "number" || t === "string" || t === "boolean"; +} + +function isCcType(t: string): t is CcType { + return CC_COMPLEX_TYPES.has(t); +} + +function buildParseExpression( + field: FieldDef, + enumNames: ReadonlySet, + beanNames: ReadonlySet, + inBean = false, +): string { + const source = inBean ? `data.${field.name}` : `data.${field.name}`; + const base = field.type; + + if (!field.isArray) { + if (isPrimitive(base)) { + if (base === "number") { + // 根据原始类型选择解析函数:int -> parseInt,float -> parseFloat + return field.rawType === "float" + ? `ConfigParseUtils.parseFloat(${source})` + : `ConfigParseUtils.parseInt(${source})`; + } + if (base === "boolean") return `ConfigParseUtils.parseBoolean(${source})`; + return `ConfigParseUtils.parseString(${source})`; + } + if (isCcType(base)) { + const fn = + base === "Color" + ? "parseColor" + : base === "Vec2" + ? "parseVec2" + : base === "Vec3" + ? "parseVec3" + : base === "Vec4" + ? "parseVec4" + : base === "Size" + ? "parseSize" + : base === "Rect" + ? "parseRect" + : base === "Quat" + ? "parseQuat" + : base === "Mat4" + ? "parseMat4" + : "parseString"; + return `ConfigParseUtils.${fn}(${source})`; + } + if (enumNames.has(base)) { + // 支持 name 或 number,两者均可 + return `(typeof ${source} === 'number' ? ${source} : ((${"Enums"}).${base}[String(${source}) as keyof typeof ${"Enums"}.${base}] ?? 0))`; + } + if (beanNames.has(base)) { + return `parse${base}(${source})`; + } + // 未知类型按字符串解析 + return `ConfigParseUtils.parseString(${source})`; + } else { + // 数组解析 + if (isPrimitive(base)) { + if (base === "number") return `ConfigParseUtils.parseNumberArray(${source})`; + if (base === "string") return `ConfigParseUtils.parseStringArray(${source})`; + // boolean[]:先按字符串数组再逐项转布尔 + return `ConfigParseUtils.parseStringArray(${source}).map((v) => ConfigParseUtils.parseBoolean(v))`; + } + if (isCcType(base)) { + const fn = + base === "Color" + ? "parseColor" + : base === "Vec2" + ? "parseVec2" + : base === "Vec3" + ? "parseVec3" + : base === "Vec4" + ? "parseVec4" + : base === "Size" + ? "parseSize" + : base === "Rect" + ? "parseRect" + : base === "Quat" + ? "parseQuat" + : base === "Mat4" + ? "parseMat4" + : "parseString"; + // 使用 ';' 分隔元素,每个元素用解析函数处理 + return `String(${source}).split(';').filter(Boolean).map((chunk) => ConfigParseUtils.${fn}(chunk))`; + } + if (enumNames.has(base)) { + return `ConfigParseUtils.parseStringArray(${source}).map((v) => (isNaN(Number(v)) ? ((${"Enums"}).${base}[String(v) as keyof typeof ${"Enums"}.${base}] ?? 0) : Number(v)))`; + } + if (beanNames.has(base)) { + return `String(${source}).split(';').filter(Boolean).map((json) => parse${base}(JSON.parse(json)))`; + } + return `ConfigParseUtils.parseStringArray(${source})`; + } +} + +function generateDataJson(table: TableDef, rows: any[]): string { + return JSON.stringify(rows, null, 2); +} + +function generateDataTs(table: TableDef, enumNames: ReadonlySet, beanNames: ReadonlySet): string { + const usedCcTypes = new Set(); + const usedEnums = new Set(); + const usedBeans = new Set(); + for (const f of table.fields) { + const base = f.type; + if (isCcType(base)) usedCcTypes.add(base); + if (enumNames.has(base)) usedEnums.add(base); + if (beanNames.has(base)) usedBeans.add(base); + } + + const importLines: string[] = []; + if (usedCcTypes.size > 0) { + importLines.push(`import { ${Array.from(usedCcTypes).join(", ")} } from "cc";`); + } + if (usedEnums.size > 0) { + importLines.push(`import * as Enums from "./Enums";`); + } + if (usedBeans.size > 0) { + importLines.push( + `import { ${Array.from(usedBeans) + .map((b) => `${b}, parse${b}`) + .join(", ")} } from "./Beans";`, + ); + } + importLines.push(`import { ConfigParseUtils } from "./ConfigParseUtils";`); + const imports = `${importLines.join("\n")}\n\n`; + + const className = `${table.name}Data`; + const fieldsPrivate = table.fields + .map((f) => { + let value = `\n private _${f.name}: ${f.type}${f.isArray ? "[]" : ""};`; + value += `\n public get ${f.name}(): ${f.type}${f.isArray ? "[]" : ""} {`; + value += `\n return this._${f.name};`; + value += `\n }`; + return value; + }) + .join("\n"); + + const getters = table.fields + .map((f) => { + const title = f.comment ? `${f.comment}` : f.name; + const tsType = `${f.type}${f.isArray ? "[]" : ""}`; + const wrap = isCcType(f.type) + ? `ConfigParseUtils.createReadonlyProxy(ConfigParseUtils.deepFreeze(this._${f.name}), '${title}')` + : `this._${f.name}`; + return `\n\n /** ${title} */\n public get ${f.name}(): ${tsType} {\n return ${wrap};\n }`; + }) + .join("\n"); + + const ctorParams = table.fields.map((f) => `${f.name}: ${f.type}${f.isArray ? "[]" : ""}`).join(",\n "); + const ctorAssigns = table.fields.map((f) => `\n this._${f.name} = ${f.name};`).join(""); + + const parseArgs = table.fields.map((f) => `\n ${buildParseExpression(f, enumNames, beanNames)}`).join(",\n"); + + const file = `${imports}/**\n * ${ + table.name + }数据结构\n */\nexport class ${className} {\n${fieldsPrivate}\n\n public constructor(\n${ + " " + ctorParams + }\n ) {${ctorAssigns}\n }\n}\n\n/**\n * 解析配置数据\n */\nexport function parse${ + table.name + }Data(data: any): ${className} {\n return new ${className}(${parseArgs}\n );\n}\n`; + return file; +} + +function generateManagerTs(table: TableDef): string { + const name = table.name; + const uniqueFields = table.fields.filter( + (f) => f.unique && !f.isArray && (isPrimitive(f.type) || isCcType(f.type) === false), + ); + const idxDecls = uniqueFields + .map((f) => ` private by_${f.name} = new Map<${f.type}, ${name}Data>();`) + .join("\n"); + const idxAssigns = uniqueFields + .map((f) => ` this.by_${f.name}.set((config as any).${f.name}, config);`) + .join("\n"); + const idxGetters = uniqueFields + .map( + (f) => + `\n public getBy${f.name.charAt(0).toUpperCase() + f.name.slice(1)}(key: ${ + f.type + }): ${name}Data | null {\n if (!this.isLoaded) {\n LogUtils.warn("${name}Manager", "${name} 配置尚未加载完成,请等待加载完成");\n return null;\n }\n return this.by_${ + f.name + }.get(key) || null;\n }\n`, + ) + .join(""); + + return `import { JsonAsset } from "cc";\n\nimport { singleton, Singleton } from "@max-studio/core/Singleton";\nimport LogUtils from "@max-studio/core/utils/LogUtils";\n\nimport { ConfigParseUtils } from "./ConfigParseUtils";\nimport { ${name}Data, parse${name}Data } from "./${name}Data";\nimport ResManager from "@max-studio/core/res/ResManager";\n\n/**\n * ${name}配置管理器\n *\n * ⚠️ 此文件由配置表生成器自动生成,请勿手动修改!\n * 如需修改,请编辑对应的Excel配置文件,然后重新生成\n */\n@singleton({ auto: true })\nexport class ${name}Manager extends Singleton {\n private configList: readonly ${name}Data[] = [];\n private configMap = new Map();\n ${idxDecls}\n private isLoaded = false;\n\n protected async onInit(): Promise {\n await this.loadConfig();\n }\n\n private async loadConfig(): Promise {\n try {\n const {err, asset} = await ResManager.getInstance().loadAsset({\n path: "generated/data/${name}",\n type: JsonAsset,\n bundle: "configs",\n });\n this.parseConfig(asset.json);\n this.isLoaded = true;\n } catch (err) {\n LogUtils.error("${name}Manager", "加载 ${name} 配置失败:", err);\n }\n }\n\n private parseConfig(data: any[]): void {\n this.configList = Object.freeze(\n data.map((item) => {\n const config = parse${name}Data(item);\n const frozenConfig = ConfigParseUtils.deepFreeze(config);\n return ConfigParseUtils.createReadonlyProxy(frozenConfig, "${name}Data配置");\n }),\n );\n this.configMap.clear();\n ${ + uniqueFields.length > 0 ? uniqueFields.map((f) => `this.by_${f.name}.clear();`).join(" ") : "" + }\n for (const config of this.configList) {\n this.configMap.set((config as any).id, config);\n${ + idxAssigns ? ` ${idxAssigns}\n` : "" + } }\n ConfigParseUtils.deepFreeze(this.configMap);\n }\n\n public getConfig(id: number): ${name}Data | null {\n if (!this.isLoaded) {\n LogUtils.warn("${name}Manager", "${name} 配置尚未加载完成,请等待加载完成");\n return null;\n }\n return this.configMap.get(id) || null;\n }\n\n public getAllConfigs(): ${name}Data[] {\n if (!this.isLoaded) {\n LogUtils.warn("${name}Manager", "${name} 配置尚未加载完成,请等待加载完成");\n return [];\n }\n return [...this.configList];\n }\n\n public isConfigLoaded(): boolean {\n return this.isLoaded;\n }\n ${idxGetters} +} +`; +} + +function validateUnique(table: TableDef, rows: any[]): void { + for (const f of table.fields) { + if (!f.unique) continue; + const seen = new Set(); + let dupCount = 0; + for (let i = 0; i < rows.length; i++) { + const v = String(rows[i][f.name] ?? ""); + if (!v) continue; + if (seen.has(v)) { + dupCount++; + log(`⚠️ [唯一约束] ${table.name}.${f.name} 在第 ${i + 2} 行出现重复值: ${v}`); + } else { + seen.add(v); + } + } + if (dupCount === 0) { + log(`✅ [唯一约束] ${table.name}.${f.name} 校验通过`); + } + } +} + +function validateRefsAll(tables: { table: TableDef; rows: any[] }[]): void { + const idMap = new Map>(); + for (const { table, rows } of tables) { + const ids = new Set(); + for (const r of rows) { + const id = String(r.id ?? ""); + if (id) ids.add(id); + } + idMap.set(table.name, ids); + } + for (const { table, rows } of tables) { + for (const f of table.fields) { + if (!f.refTarget) continue; + const targetIds = idMap.get(f.refTarget); + if (!targetIds) { + log(`⚠️ [引用校验] ${table.name}.${f.name} 指向的表 ${f.refTarget} 未在本次生成中发现`); + continue; + } + for (let i = 0; i < rows.length; i++) { + const v = String(rows[i][f.name] ?? ""); + if (!v) continue; + if (!targetIds.has(v)) { + log(`⚠️ [引用校验] ${table.name}.${f.name} 第 ${i + 2} 行引用不存在的 ${f.refTarget}.id=${v}`); + } + } + } + } +} + +function genForExcel(file: string, enumNames: ReadonlySet, beanNames: ReadonlySet) { + const absPath = path.join(EXCEL_DIR, file); + log("处理 Excel:", absPath); + const { table, rows } = readWorkbookTables(absPath); + + validateUnique(table, rows); + + const jsonOut = path.join(OUTPUT_DATA_DIR, `${table.name}.json`); + writeFileSafe(jsonOut, generateDataJson(table, rows)); + log("生成 JSON:", jsonOut); + + const dataTsOut = path.join(OUTPUT_CORE_DIR, `${table.name}Data.ts`); + writeFileSafe(dataTsOut, generateDataTs(table, enumNames, beanNames)); + log("生成 TS 数据类:", dataTsOut); + + const mgrTsOut = path.join(OUTPUT_CORE_DIR, `${table.name}Manager.ts`); + if (!existsSync(mgrTsOut)) { + writeFileSafe(mgrTsOut, generateManagerTs(table)); + log("生成 TS 管理器:", mgrTsOut); + } else { + log("检测到已有管理器,跳过生成:", mgrTsOut); + } +} + +function main() { + try { + if (!existsSync(EXCEL_DIR)) { + throw new Error(`未找到 Excel 目录: ${EXCEL_DIR}`); + } + const files = fs.readdirSync(EXCEL_DIR).filter((f) => f.endsWith(".xlsx")); + if (files.length === 0) { + log("excels 目录下没有 .xlsx 文件,无需生成"); + return; + } + + const enumsFile = files.find((f) => f === "__enums__.xlsx"); + const beansFile = files.find((f) => f === "__beans__.xlsx"); + const tableFiles = files.filter((f) => f !== "__enums__.xlsx" && f !== "__beans__.xlsx"); + + // 1) 生成枚举 + const enumDefs = enumsFile ? readEnumsExcel(path.join(EXCEL_DIR, enumsFile)) : []; + const enumNames = new Set(enumDefs.map((e) => e.name)); + if (enumDefs.length > 0) { + const enumsOut = path.join(OUTPUT_CORE_DIR, "Enums.ts"); + writeFileSafe(enumsOut, generateEnumsTs(enumDefs)); + log("生成枚举:", enumsOut); + } + + // 2) 生成 Beans + const beanDefs = beansFile ? readBeansExcel(path.join(EXCEL_DIR, beansFile)) : []; + const beanNames = new Set(beanDefs.map((b) => b.name)); + if (beanDefs.length > 0) { + const beansOut = path.join(OUTPUT_CORE_DIR, "Beans.ts"); + writeFileSafe(beansOut, generateBeansTs(beanDefs)); + log("生成 Beans:", beansOut); + } + + // 3) 读取所有表用于跨表引用校验 + const parsedTables: { table: TableDef; rows: any[] }[] = []; + for (const f of tableFiles) { + const absPath = path.join(EXCEL_DIR, f); + const { table, rows } = readWorkbookTables(absPath); + parsedTables.push({ table, rows }); + } + validateRefsAll(parsedTables); + + // 4) 为每个表生成产物 + for (const f of tableFiles) { + genForExcel(f, enumNames, beanNames); + } + + log("配置生成完成 ✅"); + } catch (err) { + + console.error("[gen-configs] 生成失败:", err); + process.exitCode = 1; + } +} + +main(); diff --git a/extensions/max-studio/source/hotupdate/builder.ts b/extensions/max-studio/source/hotupdate/builder.ts index 9d2bff6..cc83f6d 100644 --- a/extensions/max-studio/source/hotupdate/builder.ts +++ b/extensions/max-studio/source/hotupdate/builder.ts @@ -1,4 +1,4 @@ -/* eslint-disable @typescript-eslint/naming-convention */ + import { BuildPlugin } from "@cocos/creator-types/editor/packages/builder/@types/public"; diff --git a/extensions/max-studio/source/hotupdate/cli.ts b/extensions/max-studio/source/hotupdate/cli.ts index 10e8418..3db29f9 100755 --- a/extensions/max-studio/source/hotupdate/cli.ts +++ b/extensions/max-studio/source/hotupdate/cli.ts @@ -7,7 +7,7 @@ let outputPath: string = ''; let i = 2; while (i < process.argv.length) { - let arg = process.argv[i]; + const arg = process.argv[i]; switch(arg) { case '-configPath': configs = require(process.argv[i + 1]) as GenPackageConfig[]; @@ -25,7 +25,7 @@ while (i < process.argv.length) { i += 2 } -for (let item of configs) { - let src = assetRootDirPath; +for (const item of configs) { + const src = assetRootDirPath; generator(src, outputPath, item); } diff --git a/extensions/max-studio/source/hotupdate/hooks.ts b/extensions/max-studio/source/hotupdate/hooks.ts index a8b4558..d0246fc 100644 --- a/extensions/max-studio/source/hotupdate/hooks.ts +++ b/extensions/max-studio/source/hotupdate/hooks.ts @@ -85,7 +85,7 @@ export const onAfterBuild: BuildHook.onAfterBuild = async function ( hotupdateConfig.outInput, JSON.stringify(hotupdateConfig) ); - if (!!hotupdateConfig.hotupdatePluginCheck) { + if (hotupdateConfig.hotupdatePluginCheck) { // 验证配置参数 if (!hotupdateConfig.configInput || !hotupdateConfig.outInput) { console.error("热更新配置不完整:configInput 和 outInput 不能为空"); diff --git a/extensions/max-studio/source/main.ts b/extensions/max-studio/source/main.ts index d5fef41..487cd31 100755 --- a/extensions/max-studio/source/main.ts +++ b/extensions/max-studio/source/main.ts @@ -1,4 +1,4 @@ -/* eslint-disable no-console */ + /** * @en Registration method for the main process of Extension * @zh 为扩展的主进程的注册方法 diff --git a/extensions/max-studio/tsconfig.json b/extensions/max-studio/tsconfig.json index d47303c..8fe3f6e 100755 --- a/extensions/max-studio/tsconfig.json +++ b/extensions/max-studio/tsconfig.json @@ -1,12 +1,9 @@ { - "extends": "./base.tsconfig.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./source", - "types": [ - "@cocos/creator-types/engine", - "@cocos/creator-types/editor" - ] - }, - "exclude": ["./assets"] + "extends": "./base.tsconfig.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./source", + "types": ["@cocos/creator-types/engine", "@cocos/creator-types/editor"] + }, + "exclude": ["./assets"] } diff --git a/package-lock.json b/package-lock.json index 3e3e414..755028d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,481 +1,2240 @@ { - "name": "Max-Cocos-Demo", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "Max-Cocos-Demo", - "dependencies": { - "protobufjs": "^7.5.4" - }, - "devDependencies": { - "fast-glob": "^3.3.2", - "xlsx": "^0.18.5" - } + "name": "Max-Cocos-Demo", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "Max-Cocos-Demo", + "dependencies": { + "protobufjs": "^7.5.4" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "eslint": "^9.39.1", + "eslint-plugin-unicorn": "^62.0.0", + "eslint-plugin-unused-imports": "^4.3.0", + "fast-glob": "^3.3.2", + "globals": "^16.5.0", + "jiti": "^2.6.1", + "typescript-eslint": "^8.46.4", + "xlsx": "^0.18.5" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmmirror.com/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmmirror.com/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.1", + "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmmirror.com/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmmirror.com/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmmirror.com/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.8.1", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-24.8.1.tgz", + "integrity": "sha512-alv65KGRadQVfVcG69MuB4IzdYVpRwMG/mq8KWOaoOdyY617P5ivaDiMCGOFDWD2sAn5Q0mR3mRtUOgm99hL9Q==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.14.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.4.tgz", + "integrity": "sha512-R48VhmTJqplNyDxCyqqVkFSZIx1qX6PzwqgcXn1olLrzxcSBDlOsbtcnQuQhNtnNiJ4Xe5gREI1foajYaYU2Vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.46.4", + "@typescript-eslint/type-utils": "8.46.4", + "@typescript-eslint/utils": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.46.4", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-8.46.4.tgz", + "integrity": "sha512-tK3GPFWbirvNgsNKto+UmB/cRtn6TZfyw0D6IKrW55n6Vbs7KJoZtI//kpTKzE/DUmmnAFD8/Ca46s7Obs92/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.46.4", + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/project-service/-/project-service-8.46.4.tgz", + "integrity": "sha512-nPiRSKuvtTN+no/2N1kt2tUh/HoFzeEgOm9fQ6XQk4/ApGqjx0zFIIaLJ6wooR1HIoozvj2j6vTi/1fgAz7UYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.46.4", + "@typescript-eslint/types": "^8.46.4", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-8.46.4.tgz", + "integrity": "sha512-tMDbLGXb1wC+McN1M6QeDx7P7c0UWO5z9CXqp7J8E+xGcJuUuevWKxuG8j41FoweS3+L41SkyKKkia16jpX7CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.4.tgz", + "integrity": "sha512-+/XqaZPIAk6Cjg7NWgSGe27X4zMGqrFqZ8atJsX3CWxH/jACqWnrWI68h7nHQld0y+k9eTTjb9r+KU4twLoo9A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-8.46.4.tgz", + "integrity": "sha512-V4QC8h3fdT5Wro6vANk6eojqfbv5bpwHuMsBcJUJkqs2z5XnYhJzyz9Y02eUmF9u3PgXEUiOt4w4KHR3P+z0PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4", + "@typescript-eslint/utils": "8.46.4", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.46.4.tgz", + "integrity": "sha512-USjyxm3gQEePdUwJBFjjGNG18xY9A2grDVGuk7/9AkjIF1L+ZrVnwR5VAU5JXtUnBL/Nwt3H31KlRDaksnM7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.4.tgz", + "integrity": "sha512-7oV2qEOr1d4NWNmpXLR35LvCfOkTNymY9oyW+lUHkmCno7aOmIf/hMaydnJBUTBMRCOGZh8YjkFOc8dadEoNGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.46.4", + "@typescript-eslint/tsconfig-utils": "8.46.4", + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-8.46.4.tgz", + "integrity": "sha512-AbSv11fklGXV6T28dp2Me04Uw90R2iJ30g2bgLz529Koehrmkbs1r7paFqr1vPCZi7hHwYxYtxfyQMRC8QaVSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.46.4", + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.4.tgz", + "integrity": "sha512-/++5CYLQqsO9HFGLI7APrxBJYo+5OCMpViuhV8q5/Qa3o5mMrF//eQHks+PXcsAVaLdn817fMuS7zqoXNNZGaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.46.4", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/adler-32": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz", + "integrity": "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.26", + "resolved": "https://registry.npmmirror.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.26.tgz", + "integrity": "sha512-73lC1ugzwoaWCLJ1LvOgrR5xsMLTqSKIEoMHVtL9E/HNk0PXtTM76ZIm84856/SF7Nv8mPZxKoBsgpm0tR1u1Q==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.0", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.28.0.tgz", + "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmmirror.com/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "license": "BSD-3-Clause", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", - "license": "BSD-3-Clause" - }, - "node_modules/@types/node": { - "version": "24.8.1", - "resolved": "https://registry.npmmirror.com/@types/node/-/node-24.8.1.tgz", - "integrity": "sha512-alv65KGRadQVfVcG69MuB4IzdYVpRwMG/mq8KWOaoOdyY617P5ivaDiMCGOFDWD2sAn5Q0mR3mRtUOgm99hL9Q==", - "license": "MIT", - "dependencies": { - "undici-types": "~7.14.0" - } - }, - "node_modules/adler-32": { - "version": "1.3.1", - "resolved": "https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz", - "integrity": "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cfb": { - "version": "1.2.2", - "resolved": "https://registry.npmmirror.com/cfb/-/cfb-1.2.2.tgz", - "integrity": "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "adler-32": "~1.3.0", - "crc-32": "~1.2.0" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/codepage": { - "version": "1.15.0", - "resolved": "https://registry.npmmirror.com/codepage/-/codepage-1.15.0.tgz", - "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "crc32": "bin/crc32.njs" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fastq": { - "version": "1.19.1", - "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.19.1.tgz", - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/frac": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/frac/-/frac-1.1.2.tgz", - "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/long": { - "version": "5.3.2", - "resolved": "https://registry.npmmirror.com/long/-/long-5.3.2.tgz", - "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", - "license": "Apache-2.0" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/protobufjs": { - "version": "7.5.4", - "resolved": "https://registry.npmmirror.com/protobufjs/-/protobufjs-7.5.4.tgz", - "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/reusify": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/ssf": { - "version": "0.11.2", - "resolved": "https://registry.npmmirror.com/ssf/-/ssf-0.11.2.tgz", - "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "frac": "~1.1.2" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/undici-types": { - "version": "7.14.0", - "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.14.0.tgz", - "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==", - "license": "MIT" - }, - "node_modules/wmf": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/wmf/-/wmf-1.0.2.tgz", - "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/word": { - "version": "0.3.0", - "resolved": "https://registry.npmmirror.com/word/-/word-0.3.0.tgz", - "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/xlsx": { - "version": "0.18.5", - "resolved": "https://registry.npmmirror.com/xlsx/-/xlsx-0.18.5.tgz", - "integrity": "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "adler-32": "~1.3.0", - "cfb": "~1.2.1", - "codepage": "~1.15.0", - "crc-32": "~1.2.1", - "ssf": "~0.11.2", - "wmf": "~1.0.1", - "word": "~0.3.0" - }, - "bin": { - "xlsx": "bin/xlsx.njs" - }, - "engines": { - "node": ">=0.8" - } + { + "type": "github", + "url": "https://github.com/sponsors/ai" } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.25", + "caniuse-lite": "^1.0.30001754", + "electron-to-chromium": "^1.5.249", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/builtin-modules": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/builtin-modules/-/builtin-modules-5.0.0.tgz", + "integrity": "sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001754", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001754.tgz", + "integrity": "sha512-x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/cfb": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/cfb/-/cfb-1.2.2.tgz", + "integrity": "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "adler-32": "~1.3.0", + "crc-32": "~1.2.0" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/change-case": { + "version": "5.4.4", + "resolved": "https://registry.npmmirror.com/change-case/-/change-case-5.4.4.tgz", + "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmmirror.com/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clean-regexp/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/codepage": { + "version": "1.15.0", + "resolved": "https://registry.npmmirror.com/codepage/-/codepage-1.15.0.tgz", + "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/core-js-compat": { + "version": "3.46.0", + "resolved": "https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.46.0.tgz", + "integrity": "sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.26.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "crc32": "bin/crc32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.250", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.250.tgz", + "integrity": "sha512-/5UMj9IiGDMOFBnN4i7/Ry5onJrAGSbOGo3s9FEKmwobGq6xw832ccET0CE3CkkMBZ8GJSlUIesZofpyurqDXw==", + "dev": true, + "license": "ISC" + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.1", + "resolved": "https://registry.npmmirror.com/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-unicorn": { + "version": "62.0.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-62.0.0.tgz", + "integrity": "sha512-HIlIkGLkvf29YEiS/ImuDZQbP12gWyx5i3C6XrRxMvVdqMroCI9qoVYCoIl17ChN+U89pn9sVwLxhIWj5nEc7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "@eslint-community/eslint-utils": "^4.9.0", + "@eslint/plugin-kit": "^0.4.0", + "change-case": "^5.4.4", + "ci-info": "^4.3.1", + "clean-regexp": "^1.0.0", + "core-js-compat": "^3.46.0", + "esquery": "^1.6.0", + "find-up-simple": "^1.0.1", + "globals": "^16.4.0", + "indent-string": "^5.0.0", + "is-builtin-module": "^5.0.0", + "jsesc": "^3.1.0", + "pluralize": "^8.0.0", + "regexp-tree": "^0.1.27", + "regjsparser": "^0.13.0", + "semver": "^7.7.3", + "strip-indent": "^4.1.1" + }, + "engines": { + "node": "^20.10.0 || >=21.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=9.38.0" + } + }, + "node_modules/eslint-plugin-unused-imports": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-4.3.0.tgz", + "integrity": "sha512-ZFBmXMGBYfHttdRtOG9nFFpmUvMtbHSjsKrS20vdWdbfiVYsO3yA2SGYy9i9XmZJDfMGBflZGBCm70SEnFQtOA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0", + "eslint": "^9.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmmirror.com/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-up-simple": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/find-up-simple/-/find-up-simple-1.0.1.tgz", + "integrity": "sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/frac": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/frac/-/frac-1.1.2.tgz", + "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "16.5.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-builtin-module": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-5.0.0.tgz", + "integrity": "sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "builtin-modules": "^5.0.0" + }, + "engines": { + "node": ">=18.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "license": "Apache-2.0" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/protobufjs": { + "version": "7.5.4", + "resolved": "https://registry.npmmirror.com/protobufjs/-/protobufjs-7.5.4.tgz", + "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmmirror.com/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true, + "license": "MIT", + "bin": { + "regexp-tree": "bin/regexp-tree" + } + }, + "node_modules/regjsparser": { + "version": "0.13.0", + "resolved": "https://registry.npmmirror.com/regjsparser/-/regjsparser-0.13.0.tgz", + "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.1.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ssf": { + "version": "0.11.2", + "resolved": "https://registry.npmmirror.com/ssf/-/ssf-0.11.2.tgz", + "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "frac": "~1.1.2" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/strip-indent": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/strip-indent/-/strip-indent-4.1.1.tgz", + "integrity": "sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.46.4", + "resolved": "https://registry.npmmirror.com/typescript-eslint/-/typescript-eslint-8.46.4.tgz", + "integrity": "sha512-KALyxkpYV5Ix7UhvjTwJXZv76VWsHG+NjNlt/z+a17SOQSiOcBdUXdbJdyXi7RPxrBFECtFOiPwUJQusJuCqrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.46.4", + "@typescript-eslint/parser": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4", + "@typescript-eslint/utils": "8.46.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/undici-types": { + "version": "7.14.0", + "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.14.0.tgz", + "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==", + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wmf": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/wmf/-/wmf-1.0.2.tgz", + "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/word": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/word/-/word-0.3.0.tgz", + "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/xlsx": { + "version": "0.18.5", + "resolved": "https://registry.npmmirror.com/xlsx/-/xlsx-0.18.5.tgz", + "integrity": "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "adler-32": "~1.3.0", + "cfb": "~1.2.1", + "codepage": "~1.15.0", + "crc-32": "~1.2.1", + "ssf": "~0.11.2", + "wmf": "~1.0.1", + "word": "~0.3.0" + }, + "bin": { + "xlsx": "bin/xlsx.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } + } } diff --git a/package.json b/package.json index bdf7db1..c754ff1 100755 --- a/package.json +++ b/package.json @@ -1,20 +1,27 @@ { - "creator": { - "version": "3.8.7" - }, - "name": "Max-Cocos-Demo", - "type": "3d", - "uuid": "3dbb9a34-1d90-464b-b528-a6ed64299d03", - "_sourceId": "0bd80113-4da4-4e0a-90c9-c8d85d3b77b7", - "dependencies": { - "protobufjs": "^7.5.4" - }, - "devDependencies": { - "fast-glob": "^3.3.2", - "xlsx": "^0.18.5" - }, - "scripts": { - "build-proto": "pbjs --target static-module --wrap commonjs --out ./assets/scripts/protos/ProtoDefinitions.js ./protos/*.proto && pbts --out ./assets/scripts/protos/ProtoDefinitions.d.ts ./assets/scripts/protos/*.js", - "build-proto:slim": "pbjs -t static-module -w commonjs --no-verify --no-create --no-convert --no-delimited -o ./assets/scripts/protos/ProtoDefinitions.js ./protos/*.proto && pbts -o ./assets/scripts/protos/ProtoDefinitions.d.ts ./assets/scripts/protos/ProtoDefinitions.js" - } + "creator": { + "version": "3.8.7" + }, + "name": "Max-Cocos-Demo", + "type": "3d", + "uuid": "3dbb9a34-1d90-464b-b528-a6ed64299d03", + "_sourceId": "0bd80113-4da4-4e0a-90c9-c8d85d3b77b7", + "dependencies": { + "protobufjs": "^7.5.4" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "eslint": "^9.39.1", + "eslint-plugin-unicorn": "^62.0.0", + "eslint-plugin-unused-imports": "^4.3.0", + "fast-glob": "^3.3.2", + "globals": "^16.5.0", + "jiti": "^2.6.1", + "typescript-eslint": "^8.46.4", + "xlsx": "^0.18.5" + }, + "scripts": { + "build-proto": "pbjs --target static-module --wrap commonjs --out ./assets/scripts/protos/ProtoDefinitions.js ./protos/*.proto && pbts --out ./assets/scripts/protos/ProtoDefinitions.d.ts ./assets/scripts/protos/*.js", + "build-proto:slim": "pbjs -t static-module -w commonjs --no-verify --no-create --no-convert --no-delimited -o ./assets/scripts/protos/ProtoDefinitions.js ./protos/*.proto && pbts -o ./assets/scripts/protos/ProtoDefinitions.d.ts ./assets/scripts/protos/ProtoDefinitions.js" + } } diff --git a/profiles/v2/packages/builder.json b/profiles/v2/packages/builder.json index a9217cb..d51d4d2 100755 --- a/profiles/v2/packages/builder.json +++ b/profiles/v2/packages/builder.json @@ -22,7 +22,7 @@ "uuid": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" } ], - "startScene": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" + "startScene": "97897335-3b91-40fb-8233-5d20cecd2d8c" }, "BuildTaskManager": { "taskMap": { @@ -30,10 +30,10 @@ "type": "build", "id": "1760105640212", "progress": 1, - "state": "success", + "state": "failure", "stage": "build", - "message": "2025-10-25 23:06:07 build success in 7 s!", - "detailMessage": "// ---- build task cocos-service:onAfterCompressSettings ----\r", + "message": "2025-10-30 23:58:25 build task failed! Error: execute-task buildScriptCommand failed with code -1!\n at ChildProcess. (/Applications/Cocos/Creator/3.8.7/CocosCreator.app/Contents/Resources/app.asar/builtin/builder/dist/worker/worker-pools/sub-process-manager.ccc:1:2253)\n at ChildProcess.emit (node:events:519:28)\n at emit (node:internal/child_process:951:14)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)", + "detailMessage": "[buildScriptCommand]Create cjs interop url for 'file:///Users/yangjie/Projects/Max-Cocos-Demo/assets/scripts/protos/ProtoDefinitions.js'\r\r\r", "options": { "name": "Max-Cocos-Demo", "server": "", @@ -76,13 +76,17 @@ "useSplashScreen": true, "bundleCommonChunk": false, "packAutoAtlas": true, - "startScene": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3", + "startScene": "97897335-3b91-40fb-8233-5d20cecd2d8c", "outputName": "web-mobile", "taskName": "web-mobile", "scenes": [ { "url": "db://assets/scenes/StartUp.scene", "uuid": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" + }, + { + "url": "db://assets/local-test/LocalTest.scene", + "uuid": "97897335-3b91-40fb-8233-5d20cecd2d8c" } ], "wasmCompressionMode": false, @@ -94,7 +98,7 @@ "enable": false } }, - "time": "10-25-2025 23:06:00", + "time": "10-30-2025 23:58:21", "dirty": false } } diff --git a/profiles/v2/packages/package-asset.json b/profiles/v2/packages/package-asset.json new file mode 100644 index 0000000..3724a4b --- /dev/null +++ b/profiles/v2/packages/package-asset.json @@ -0,0 +1,4 @@ +{ + "__version__": "1.0.3", + "import-path": "/Users/yangjie/Downloads" +} diff --git a/profiles/v2/packages/reference-image.json b/profiles/v2/packages/reference-image.json index 9868873..645ac61 100644 --- a/profiles/v2/packages/reference-image.json +++ b/profiles/v2/packages/reference-image.json @@ -8,7 +8,7 @@ "y": 0, "sx": 1, "sy": 1, - "opacity": 89, + "opacity": 0, "missing": false } ], @@ -17,9 +17,9 @@ "path": "/Users/yangjie/Projects/Max-Cocos-Demo/ref/Lobby.png" } }, - "scene": "f5d33adb-6500-4a57-a4f7-e887749e98cd" + "scene": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" }, "show": true, "root-path": "/Users/yangjie/Projects/Max-Cocos-Demo/ref", - "opacity": 89 + "opacity": 0 } diff --git a/profiles/v2/packages/scene.json b/profiles/v2/packages/scene.json index ae90804..7b5be7b 100755 --- a/profiles/v2/packages/scene.json +++ b/profiles/v2/packages/scene.json @@ -322,10 +322,10 @@ }, "scale": 0.4090625 }, - "b015ae0f-e5cd-4d49-8d82-e696fddb97e3": { + "da4a66cd-fba4-4b72-9a10-6c390e890a69": { "position": { - "x": 1218.9128360242735, - "y": 747.0263176628332, + "x": 0, + "y": 0, "z": 5000 }, "rotation": { @@ -335,19 +335,19 @@ "w": 1 }, "viewCenter": { - "x": 1162.1797898616528, - "y": 605.0953427557829, - "z": -811.0718381966828 + "x": 0, + "y": 0, + "z": 0 }, "contentRect": { - "x": -258.39078529243795, - "y": -177.2759480807777, + "x": 0, + "y": 0, "width": 1496, "height": 936 }, - "scale": 0.5063278727586901 + "scale": 1 }, - "da4a66cd-fba4-4b72-9a10-6c390e890a69": { + "8e9480c9-d527-480b-a409-da894cf905d2": { "position": { "x": 0, "y": 0, @@ -376,7 +376,7 @@ "position": { "x": 1280, "y": 720, - "z": 5000 + "z": 1911.6073097300991 }, "rotation": { "x": 0, @@ -396,6 +396,356 @@ "height": 936 }, "scale": 0.4090625 + }, + "f3d8831c-1525-4b2c-84b3-8f7d1910095f": { + "position": { + "x": 1246.0570224084763, + "y": 1604.7661254976215, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 1285.9504867335856, + "y": 1199.4259170549033, + "z": 9.883934542259794 + }, + "contentRect": { + "x": 1114.5950917398366, + "y": 1522.514543207617, + "width": 1496, + "height": 936 + }, + "scale": 5.68986014578923 + }, + "b7a6cbd2-b13b-4eb9-9608-3d53c816315a": { + "position": { + "x": 1280, + "y": 720, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 0, + "y": 0, + "width": 1047.2, + "height": 589.05 + }, + "scale": 0.4090625 + }, + "be15b5af-c87d-4d9a-9faa-954318e815a6": { + "position": { + "x": 1194.745775244958, + "y": 680.3468722069571, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": -78.68186422387392, + "y": -383.8747979205667, + "width": 1120, + "height": 936 + }, + "scale": 0.43975800637842716 + }, + "44737cfc-59e2-48aa-9f36-9dccf8e209b3": { + "position": { + "x": 1280.1465438094885, + "y": 719.737763709337, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 1192.516865357472, + "y": 646.5043895744374, + "width": 1120, + "height": 936 + }, + "scale": 6.390528983929111 + }, + "97897335-3b91-40fb-8233-5d20cecd2d8c": { + "position": { + "x": 1020.2334656810357, + "y": 836.661617209116, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": -169.6266554684245, + "y": -157.72148403721863, + "width": 808, + "height": 936 + }, + "scale": 0.470643557209913 + }, + "a45550e1-74da-4d98-848a-b0f63c26ca96": { + "position": { + "x": 1287.9601236426681, + "y": 754.2034527797232, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 1212.8843190730945, + "y": 667.2344514466528, + "width": 808, + "height": 936 + }, + "scale": 5.381227711327539 + }, + "8173ecc4-d3a3-401f-8edc-871c8282e25e": { + "position": { + "x": 1190.877626498417, + "y": 901.2788934051608, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 935.5104372536211, + "y": 605.4574959631697, + "width": 808, + "height": 936 + }, + "scale": 1.5820356608644988 + }, + "173ed391-5e4a-4a7f-ac3b-ad9d47234ada": { + "position": { + "x": 1280, + "y": 714.8890084703568, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 1230, + "y": 659.7780169407135, + "width": 565.6, + "height": 623.4155361833243 + }, + "scale": 5.656000000000001 + }, + "2366e791-ed40-4713-8037-8702c964ea37": { + "position": { + "x": 0, + "y": 0, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": -404, + "y": -468, + "width": 808, + "height": 936 + }, + "scale": 1 + }, + "7336a218-79c0-4724-8619-65141722dcf2": { + "position": { + "x": 1285.2411999155574, + "y": 720.6166117547714, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 1182.6737348710265, + "y": 601.8008354160571, + "width": 808, + "height": 936 + }, + "scale": 3.9388708673320307 + }, + "2a886022-1ceb-4c7c-b7b9-57136abed8f7": { + "position": { + "x": 1045.7668778408781, + "y": 945.071524811322, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 641.1453240652954, + "y": 476.3515070712906, + "width": 808, + "height": 936 + }, + "scale": 0.9984638639000251 + }, + "b015ae0f-e5cd-4d49-8d82-e696fddb97e3": { + "position": { + "x": 619.8428850444172, + "y": 648.5579909125541, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": -159.67016345805328, + "y": -254.44227319426807, + "width": 808, + "height": 936 + }, + "scale": 0.5182722736663973 + }, + "1369e7f1-056a-4e3d-8484-39be5dface1e": { + "position": { + "x": 0, + "y": 0, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": 0, + "y": 0, + "width": 0, + "height": 0 + }, + "scale": 1 + }, + "f5d33adb-6500-4a57-a4f7-e887749e98cd": { + "position": { + "x": 361.4971535894375, + "y": 697.9202837991659, + "z": 5000 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "viewCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "contentRect": { + "x": -353.0143165682465, + "y": 46.085258392155914, + "width": 1026, + "height": 936 + }, + "scale": 0.7179730787061922 } }, "camera-uuids": [ @@ -411,9 +761,23 @@ "5bb6323b-55a0-4c0e-a62d-6f7f97cc366d", "1ab32afb-adf3-4cbd-9c3e-b36fbd67c554", "cbc1558e-3b39-454e-a1a1-96bf47e39a10", - "b015ae0f-e5cd-4d49-8d82-e696fddb97e3", "da4a66cd-fba4-4b72-9a10-6c390e890a69", - "5390cf08-178a-4663-89c0-3725d54375d5" + "8e9480c9-d527-480b-a409-da894cf905d2", + "5390cf08-178a-4663-89c0-3725d54375d5", + "f3d8831c-1525-4b2c-84b3-8f7d1910095f", + "b7a6cbd2-b13b-4eb9-9608-3d53c816315a", + "be15b5af-c87d-4d9a-9faa-954318e815a6", + "44737cfc-59e2-48aa-9f36-9dccf8e209b3", + "97897335-3b91-40fb-8233-5d20cecd2d8c", + "a45550e1-74da-4d98-848a-b0f63c26ca96", + "8173ecc4-d3a3-401f-8edc-871c8282e25e", + "173ed391-5e4a-4a7f-ac3b-ad9d47234ada", + "2366e791-ed40-4713-8037-8702c964ea37", + "7336a218-79c0-4724-8619-65141722dcf2", + "2a886022-1ceb-4c7c-b7b9-57136abed8f7", + "b015ae0f-e5cd-4d49-8d82-e696fddb97e3", + "1369e7f1-056a-4e3d-8484-39be5dface1e", + "f5d33adb-6500-4a57-a4f7-e887749e98cd" ], "__version__": "1.0.3", "camera": { diff --git a/profiles/v2/packages/web-mobile.json b/profiles/v2/packages/web-mobile.json index c86a49c..7f9c77e 100755 --- a/profiles/v2/packages/web-mobile.json +++ b/profiles/v2/packages/web-mobile.json @@ -20,7 +20,7 @@ "uuid": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" } ], - "startScene": "b015ae0f-e5cd-4d49-8d82-e696fddb97e3" + "startScene": "97897335-3b91-40fb-8233-5d20cecd2d8c" }, "taskOptionsMap": { "1760105640212": { diff --git a/settings/v2/packages/builder.json b/settings/v2/packages/builder.json index 9cad815..575e37a 100755 --- a/settings/v2/packages/builder.json +++ b/settings/v2/packages/builder.json @@ -2,5 +2,36 @@ "__version__": "1.3.9", "textureCompressConfig": { "genMipmaps": false + }, + "bundleConfig": { + "custom": { + "default": { + "displayName": "i18n:builder.asset_bundle.defaultConfig", + "configs": { + "native": { + "preferredOptions": { + "isRemote": false, + "compressionType": "merge_all_json" + } + }, + "web": { + "preferredOptions": { + "isRemote": false, + "compressionType": "merge_all_json" + }, + "fallbackOptions": { + "compressionType": "merge_dep" + } + }, + "miniGame": { + "fallbackOptions": { + "isRemote": false, + "compressionType": "merge_dep" + }, + "configMode": "fallback" + } + } + } + } } } diff --git a/settings/v2/packages/project.json b/settings/v2/packages/project.json index 7814a63..18967c0 100755 --- a/settings/v2/packages/project.json +++ b/settings/v2/packages/project.json @@ -8,10 +8,10 @@ }, "general": { "designResolution": { - "width": 2560, - "height": 1440, - "fitWidth": false, - "fitHeight": true + "width": 640, + "height": 1138, + "fitWidth": true, + "fitHeight": false }, "highQuality": true },