Merge branch 'main' of 47.107.44.202:xionglijia/18xchat

This commit is contained in:
2025-09-02 15:01:17 +08:00
41 changed files with 2766 additions and 39 deletions
@@ -0,0 +1,50 @@
/**
* Ai角色配置
*/
import { BaseConfig } from "./BaseConfig";
import { ConfigManager } from "../manager/ConfigManager";
export class AiCharacterConfig extends BaseConfig {
public reset(): void {
}
public clear(): void {
}
public destroy(): void {
super.destroy();
}
/**
* 获取所有配置
*/
protected getAllConfig(): any | null {
return ConfigManager.tables.TbAiCharacters;
}
/**
* 获取配置,根据 id
*/
protected getConfigById(id: number): any | null {
let allData = this.getAllConfig();
if (!allData) return null;
return allData.get(id);
}
/** 根据 id 获取基础提示 */
public getBasePromptById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.basePrompt;
}
/** 根据 id 获取额外提示 */
public getAdditionPromptById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.additionPrompt;
}
}
@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "82e997ec-36ed-4663-88f5-dc6550348c5d",
"files": [],
"subMetas": {},
"userData": {}
}
+8 -1
View File
@@ -83,5 +83,12 @@ export class BaseConfig {
*/
protected getAllConfig(): any | null {
return null;
}
}
/**
* 获取所有配置 id,如果存在
*/
public getAllId(): any | null {
return null;
}
}
@@ -0,0 +1,85 @@
/**
* 技师的简要配置
*/
import { BaseConfig } from "./BaseConfig";
import { ConfigManager } from "../manager/ConfigManager";
export class GirlConfig extends BaseConfig {
public reset(): void {
}
public clear(): void {
}
public destroy(): void {
super.destroy();
}
/**
* 获取所有配置
*/
protected getAllConfig(): any | null {
return ConfigManager.tables.TbGirls;
}
/**
* 获取配置,根据 id
*/
protected getConfigById(id: number): any | null {
let allData = this.getAllConfig();
if (!allData) return null;
return allData.get(id);
}
/** 根据 id 获取名字 */
public getNameById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.nameKey;
}
/** 根据 id 获取年龄 */
public getAgeById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.age;
}
/** 根据 id 获取分类 */
public getCategoryById(id: number): number | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.category;
}
/** 根据 id 获取标签键 */
public getTagKeyById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.tagKey;
}
/** 根据 id 获取付费类型 */
public getPriceTypeById(id: number): number | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.priceType;
}
/** 根据 id 获取头像路径 */
public getAvatarPathById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.avatarPath;
}
/** 根据 id 获取头像路径 */
public getListAvatarPathPathById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.listAvatarPath;
}
}
@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "a6f7829d-6d80-405d-8f14-ede4365e8213",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,105 @@
/**
* 技师的详细配置
*/
import { BaseConfig } from "./BaseConfig";
import { ConfigManager } from "../manager/ConfigManager";
export class GirlDetailConfig extends BaseConfig {
public reset(): void {
}
public clear(): void {
}
public destroy(): void {
super.destroy();
}
/**
* 获取所有配置
*/
protected getAllConfig(): any | null {
return ConfigManager.tables.TbGirlsDetail;
}
/**
* 获取配置,根据 id
*/
protected getConfigById(id: number): any | null {
let allData = this.getAllConfig();
if (!allData) return null;
return allData.get(id);
}
/** 根据 id 获取详细描述 */
public getDetailDescById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.detailDesc;
}
/** 根据 id 获取 commercialImages */
private getCommercialImagesById(id: number): any | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.commercialImages;
}
/** 根据 id 和 index 获取图片类型 */
public getImageTypeById(id: number, index: number): number | null {
let oneData = this.getCommercialImagesById(id);
if (!oneData) return null;
if (index < 0 || index >= oneData.length) return null;
return oneData[index].imageType;
}
/** 根据 id 和 index 获取图片价格 */
public getImagePriceById(id: number, index: number): number | null {
let oneData = this.getCommercialImagesById(id);
if (!oneData) return null;
if (index < 0 || index >= oneData.length) return null;
return oneData[index].imagePrice;
}
/** 根据 id 和 index 获取图片路径 */
public getImagePathById(id: number, index: number): string | null {
let oneData = this.getCommercialImagesById(id);
if (!oneData) return null;
if (index < 0 || index >= oneData.length) return null;
return oneData[index].path;
}
/** 根据 id 获取 commercialVideos */
private getCommercialVideosById(id: number): any | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.commercialVideos;
}
/** 根据 id 和 index 获取视频路径 */
public getVideoPathById(id: number, index: number): string | null {
let oneData = this.getCommercialVideosById(id);
if (!oneData) return null;
if (index < 0 || index >= oneData.length) return null;
return oneData[index].path;
}
/** 根据 id 和 index 获取关联情绪 */
public getVideoEmotionById(id: number, index: number): number | null {
let oneData = this.getCommercialVideosById(id);
if (!oneData) return null;
if (index < 0 || index >= oneData.length) return null;
return oneData[index].emotion;
}
/** 根据 id 和 index 获取视频价格 */
public getVideoPriceById(id: number, index: number): number | null {
let oneData = this.getCommercialVideosById(id);
if (!oneData) return null;
if (index < 0 || index >= oneData.length) return null;
return oneData[index].videoPrice;
}
}
@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "270f3a20-b633-4dd8-8e91-adc0a57a366c",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,97 @@
/**
* 全局配置
*/
import { BaseConfig } from "./BaseConfig";
import { ConfigManager } from "../manager/ConfigManager";
export class GlobalConfig extends BaseConfig {
public reset(): void {
}
public clear(): void {
}
public destroy(): void {
super.destroy();
}
/**
* 获取所有配置
*/
protected getAllConfig(): any | null {
return ConfigManager.tables.TbGlobalConfig;
}
/** 获取api键 */
public getApiKey(): string | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.ApiKey;
}
/** 获取情绪判断机器人api */
public getEmotionApiKey(): string | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.emotionApiKey;
}
/** 获取情绪判断机器人api */
public getModel(): string | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.Model;
}
/** Temperature */
public getTemperature(): number | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.Temperature;
}
/** 单次聊天最大token */
public getMaxTokens(): number | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.MaxTokens;
}
/** 超时时间(微秒) */
public getTimeout(): number | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.Timeout;
}
/** 单个角色免费聊天次数 */
public getFreeChatTimes(): number | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.FreeChatTimes;
}
/** 游戏名 */
public getGameName(): string | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.GameName;
}
/** 情绪评分机器人system_prompt,需拼接角色prompt */
public getEmotionRating(): string | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.EmotionRating;
}
/** ai机器人基础规则 */
public getGirlBasePrompt(): string | null {
let oneData = this.getAllConfig();
if (!oneData) return null;
return oneData.girlBasePrompt;
}
}
@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "69d3c6fa-3722-4d8d-adff-9c66f59e9484",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,50 @@
/**
* 商城配置
*/
import { BaseConfig } from "./BaseConfig";
import { ConfigManager } from "../manager/ConfigManager";
export class PurchaseConfig extends BaseConfig {
public reset(): void {
}
public clear(): void {
}
public destroy(): void {
super.destroy();
}
/**
* 获取所有配置
*/
protected getAllConfig(): any | null {
return ConfigManager.tables.TbPurchaseConfig;
}
/**
* 获取配置,根据 id
*/
protected getConfigById(id: number): any | null {
let allData = this.getAllConfig();
if (!allData) return null;
return allData.get(id);
}
/** 根据商品 id 获取商品名字 */
public getNameById(id: number): string | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.name;
}
/** 根据商品 id 获取商品数量 */
public getCountById(id: number): number | null {
let oneData = this.getConfigById(id);
if (!oneData) return null;
return oneData.count;
}
}
@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "750dc939-fc98-45ad-b3d2-2775cd26c445",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -25,6 +25,20 @@ export class ThemeConfig extends BaseConfig {
return ConfigManager.tables.TbThemes;
}
/**
* 获取所有配置 id,如果存在
*/
public getAllId(): any | null {
let allData = this.getAllConfig();
if (!allData) return null;
const dataArr = allData.getDataList();
let allId = [];
for (let oneData of dataArr) {
allId.push(oneData.id);
}
return allId;
}
/**
* 获取配置,根据 id
*/
+9 -9
View File
@@ -17,15 +17,15 @@ import { OrderData } from "./OrderData";
* 集中定义数据ID,避免写错字符串
*/
export enum DataId {
Login = "login",
Player = "player",
Account = "account",
Meta = "meta",
NetTime = "netTime",
Theme = "theme",
Wallet = "wallet",
Shop = "shop",
Order = "order",
Login = "login", // 登录数据
Player = "player", // 玩家数据
Account = "account", // 账号数据
Meta = "meta", // 元数据
NetTime = "netTime", // 网络时间数据
Theme = "theme", // 主题数据
Wallet = "wallet", // 钱包数据
Shop = "shop", // 商城数据
Order = "order", // 订单数据
}
/** 构造器类型 */
@@ -8,12 +8,22 @@ import * as cfg from "../../schema/schema";
import ByteBuf from "db://assets/Scripts/luban/ByteBuf";
import { BaseConfig } from "../config/BaseConfig";
import { ThemeConfig } from "../config/ThemeConfig";
import { PurchaseConfig } from "../config/PurchaseConfig";
import { GlobalConfig } from "../config/GlobalConfig";
import { GirlConfig } from "../config/GirlConfig";
import { GirlDetailConfig } from "../config/GirlDetailConfig";
import { AiCharacterConfig } from "../config/AiCharacterConfig";
/**
* 集中定义数据ID,避免写错字符串
*/
export enum ConfigId {
Theme = "theme", // 主题配置
Theme = "theme", // 主题配置
Purchase = "purchase", // 商城配置
Global = "global", // 全局配置
Girl = "girl", // 技师的简要配置
GirlDetail = "girlDetail", // 技师的详细配置
AiCharacter = "aiCharacter", // 技师的详细配置
}
/** 构造器类型 */
@@ -109,6 +119,11 @@ export class ConfigManager {
*/
private registerAll(): void {
this.register(ConfigId.Theme, ThemeConfig);
this.register(ConfigId.Purchase, PurchaseConfig);
this.register(ConfigId.Global, GlobalConfig);
this.register(ConfigId.Girl, GirlConfig);
this.register(ConfigId.GirlDetail, GirlDetailConfig);
this.register(ConfigId.AiCharacter, AiCharacterConfig);
}
/**
@@ -1,38 +1,43 @@
import type { ApiResponse } from "../client/types";
import proto from "db://assets/Scripts/proto/proto.pb.js";
import type { IThemeService } from "./IThemeService";
import { ConfigManager, ConfigId } from "../../manager/ConfigManager";
import { ThemeConfig } from "../../config/ThemeConfig";
export class MockThemeService implements IThemeService {
private delay(ms = 160) { return new Promise<void>(r => setTimeout(r, ms)); }
private ok<T>(data: T): ApiResponse<T> {
return ({ ok: true, data } as unknown) as ApiResponse<T>;
return ({ code: proto.cs.EnmRetCode.SUCCESS, data } as unknown) as ApiResponse<T>;
}
private makeTheme(id: number, name: string, category: number, isRelease = true): proto.cs.IHallTheme {
private makeTheme(id: number, key: string, name: string, category: number, isRelease: boolean, path: string): proto.cs.IHallTheme {
return {
id,
key: `theme_${id}`,
key,
name,
category,
isRelease,
path: `https://dummy.local/theme/${id}.png`,
path,
};
// 若你使用资源服路径,可替换 path 为实际地址或 db:// 本地资源
}
// 获取大厅分类列表
async reqHallTheme(_req: proto.cs.ICSHallThemeReq): Promise<ApiResponse<proto.cs.ICSHallThemeRes>> {
// 延时
await this.delay();
const themes: proto.cs.IHallTheme[] = [
this.makeTheme(1, "Hot", 1, true),
this.makeTheme(2, "New", 2, true),
this.makeTheme(3, "Popular", 3, true),
this.makeTheme(4, "VIP Only", 4, false),
this.makeTheme(5, "Classic", 5, true),
this.makeTheme(6, "Editor Pick",6, true),
];
const configData = ConfigManager.I.getDataById<ThemeConfig>(ConfigId.Theme);
const allId = configData.getAllId();
let themes: proto.cs.IHallTheme[] = [];
for (let oneId of allId) {
let key = configData.getLanKeyById(oneId);
let name = configData.getNameById(oneId);
let category = configData.getCategoryById(oneId);
let isRelease = configData.getIsReleaseById(oneId);
let path = configData.getPathById(oneId);
let oneData = this.makeTheme(oneId, key, name, category, isRelease, path);
themes.push(oneData);
}
const res: proto.cs.ICSHallThemeRes = { themes };
return this.ok(res);
}
+17 -7
View File
@@ -18,6 +18,9 @@ import { ConfigManager } from "../../manager/ConfigManager";
import LanguageUtils from "../../../Main/Common/LanguageUtils";
import { ViewManager } from "../../../Main/Manager/ViewManager";
import { InnerMsgCode } from "../../../Main/Config/InnerMsgCode";
import { ThemeService } from "db://assets/Scripts/chat18x/network/services/ThemeService";
import { DataManager, DataId } from "../../data/DataManager";
import { ThemeData } from "../../data/ThemeData";
const { ccclass, property } = _decorator;
@@ -51,7 +54,7 @@ export class ThemePanel extends li_BaseView {
}
rectNameKey: string;
Show() {
async Show() {
//some temp data
this.coinNum.string = (50.0).toString();
this.recId = 1;
@@ -60,16 +63,23 @@ export class ThemePanel extends li_BaseView {
this.cache[i].node.destroy();
}
}
const cfgs = ConfigManager.tables.TbThemes.getDataList();
for (let i = 0; i < cfgs.length; i++) {
const cfg = cfgs[i];
if (!cfg) return;
// 请求主题数据
const reqData = {
};
let res = await ThemeService.I.reqHallTheme(reqData);
// 保存数据
const themeData = DataManager.I.getDataById<ThemeData>(DataId.Theme);
themeData.themes = res.data;
// 根据数据,构建界面显示
const themeIds = themeData.themeIds;
for (let id of themeIds) {
let newNode = instantiate(this.itemInst.node);
let item = newNode.getComponent(ThemeItem);
item.refresh(cfg);
item.refresh(id);
newNode.active = true;
this.cache.push(item);
this.content.addChild(newNode);
this.content.addChild(newNode);
}
const rectInfo = ConfigManager.tables.TbGirls.get(10001);
this.recId = rectInfo.id;
+11 -7
View File
@@ -6,6 +6,8 @@ import { NavigationManager } from "../manager/NavigationManager";
import { TbThemes, Theme } from "../../schema/schema";
import LanguageUtils from "../../Main/Common/LanguageUtils";
import { InnerMsgCode } from "../../Main/Config/InnerMsgCode";
import { DataManager, DataId } from "../data/DataManager";
import { ThemeData } from "../data/ThemeData";
const { ccclass, property } = _decorator;
@ccclass("ThemeItem")
@@ -36,16 +38,18 @@ export class ThemeItem extends Component {
});
}
refresh(themeData: Theme) {
refresh(themeId: number) {
// 主题数据
const themeData = DataManager.I.getDataById<ThemeData>(DataId.Theme);
this.lockImg.node.active = this.lockCover.node.active =
!themeData.isRelease;
this.isLocked = !themeData.isRelease;
this.key = themeData.key;
this.titleName.string = LanguageUtils.getText(themeData.key);
this.category = themeData.category;
!themeData.getIsReleaseById(themeId);
this.isLocked = !themeData.getIsReleaseById(themeId);
this.key = themeData.getLanKeyById(themeId);
this.titleName.string = LanguageUtils.getText(themeData.getLanKeyById(themeId));
this.category = themeData.getCategoryById(themeId);
ResManager.I.changeBundleSpriteFrame(
this.img,
themeData.path,
themeData.getPathById(themeId),
"Chat18x",
() => {
let sizeTran = this.img.node.parent.getComponent(UITransform);
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "0436052a-a676-42b9-b960-b1feebe05e8d",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "ba4b1906-7fb9-4754-8779-7a2ac21c2003",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ba4b1906-7fb9-4754-8779-7a2ac21c2003@6c48a",
"displayName": "10006_video_5_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ba4b1906-7fb9-4754-8779-7a2ac21c2003",
"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": "ba4b1906-7fb9-4754-8779-7a2ac21c2003@f9941",
"displayName": "10006_video_5_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ba4b1906-7fb9-4754-8779-7a2ac21c2003@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ba4b1906-7fb9-4754-8779-7a2ac21c2003@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "51a7bba7-1070-4ede-aab8-671c2d787404",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "51a7bba7-1070-4ede-aab8-671c2d787404@6c48a",
"displayName": "10006_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "51a7bba7-1070-4ede-aab8-671c2d787404",
"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": "51a7bba7-1070-4ede-aab8-671c2d787404@f9941",
"displayName": "10006_video_5_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "51a7bba7-1070-4ede-aab8-671c2d787404@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "51a7bba7-1070-4ede-aab8-671c2d787404@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "1336cf91-9107-40b9-ab5d-c05f5af7e672",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2b087533-cb77-4e9a-aa4e-04031f08beeb",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2b087533-cb77-4e9a-aa4e-04031f08beeb@6c48a",
"displayName": "10006_video_6_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2b087533-cb77-4e9a-aa4e-04031f08beeb",
"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": "2b087533-cb77-4e9a-aa4e-04031f08beeb@f9941",
"displayName": "10006_video_6_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2b087533-cb77-4e9a-aa4e-04031f08beeb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2b087533-cb77-4e9a-aa4e-04031f08beeb@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "55cfff9e-7c7b-4925-989c-9d08b1f90d1d",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "55cfff9e-7c7b-4925-989c-9d08b1f90d1d@6c48a",
"displayName": "10006_video_6_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "55cfff9e-7c7b-4925-989c-9d08b1f90d1d",
"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": "55cfff9e-7c7b-4925-989c-9d08b1f90d1d@f9941",
"displayName": "10006_video_6_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "55cfff9e-7c7b-4925-989c-9d08b1f90d1d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "55cfff9e-7c7b-4925-989c-9d08b1f90d1d@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "6718dffc-2936-4b07-ae74-86720f9c2166",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1b2a81bf-5f54-45d9-8acc-857fbd00f58b",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1b2a81bf-5f54-45d9-8acc-857fbd00f58b@6c48a",
"displayName": "10008_video_3_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1b2a81bf-5f54-45d9-8acc-857fbd00f58b",
"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": "1b2a81bf-5f54-45d9-8acc-857fbd00f58b@f9941",
"displayName": "10008_video_3_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1b2a81bf-5f54-45d9-8acc-857fbd00f58b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1b2a81bf-5f54-45d9-8acc-857fbd00f58b@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "08a7afdd-213d-4dca-8818-870ad06e11a9",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "08a7afdd-213d-4dca-8818-870ad06e11a9@6c48a",
"displayName": "10008_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "08a7afdd-213d-4dca-8818-870ad06e11a9",
"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": "08a7afdd-213d-4dca-8818-870ad06e11a9@f9941",
"displayName": "10008_video_3_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "08a7afdd-213d-4dca-8818-870ad06e11a9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "08a7afdd-213d-4dca-8818-870ad06e11a9@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "fd9c5eb9-0a80-4169-970e-346bb564272d",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "67181036-f76f-415e-b3f6-517a49ecff73",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "67181036-f76f-415e-b3f6-517a49ecff73@6c48a",
"displayName": "10008_video_4_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "67181036-f76f-415e-b3f6-517a49ecff73",
"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": "67181036-f76f-415e-b3f6-517a49ecff73@f9941",
"displayName": "10008_video_4_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "67181036-f76f-415e-b3f6-517a49ecff73@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "67181036-f76f-415e-b3f6-517a49ecff73@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3d6dc865-5962-4bfe-a3bc-6021c3501ee9",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3d6dc865-5962-4bfe-a3bc-6021c3501ee9@6c48a",
"displayName": "10008_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3d6dc865-5962-4bfe-a3bc-6021c3501ee9",
"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": "3d6dc865-5962-4bfe-a3bc-6021c3501ee9@f9941",
"displayName": "10008_video_4_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3d6dc865-5962-4bfe-a3bc-6021c3501ee9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3d6dc865-5962-4bfe-a3bc-6021c3501ee9@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "59564892-a187-4fc8-adb3-51925122afc8",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f8bf4458-554e-40b2-b0e1-c797b436b206",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f8bf4458-554e-40b2-b0e1-c797b436b206@6c48a",
"displayName": "10008_video_5_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f8bf4458-554e-40b2-b0e1-c797b436b206",
"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": "f8bf4458-554e-40b2-b0e1-c797b436b206@f9941",
"displayName": "10008_video_5_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f8bf4458-554e-40b2-b0e1-c797b436b206@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f8bf4458-554e-40b2-b0e1-c797b436b206@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c3b49760-af71-4132-83a7-bbb763b4180e",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c3b49760-af71-4132-83a7-bbb763b4180e@6c48a",
"displayName": "10008_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c3b49760-af71-4132-83a7-bbb763b4180e",
"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": "c3b49760-af71-4132-83a7-bbb763b4180e@f9941",
"displayName": "10008_video_5_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c3b49760-af71-4132-83a7-bbb763b4180e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c3b49760-af71-4132-83a7-bbb763b4180e@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "378b3aa2-6441-4cd3-80c3-25d56e10cec2",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9401f7d6-3386-432b-bfa8-a1b5d0d3ce7f",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9401f7d6-3386-432b-bfa8-a1b5d0d3ce7f@6c48a",
"displayName": "10009_video_4_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9401f7d6-3386-432b-bfa8-a1b5d0d3ce7f",
"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": "9401f7d6-3386-432b-bfa8-a1b5d0d3ce7f@f9941",
"displayName": "10009_video_4_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9401f7d6-3386-432b-bfa8-a1b5d0d3ce7f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9401f7d6-3386-432b-bfa8-a1b5d0d3ce7f@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c8b0cbc9-9bd7-421e-ac02-bc88c1fed844",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c8b0cbc9-9bd7-421e-ac02-bc88c1fed844@6c48a",
"displayName": "10009_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c8b0cbc9-9bd7-421e-ac02-bc88c1fed844",
"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": "c8b0cbc9-9bd7-421e-ac02-bc88c1fed844@f9941",
"displayName": "10009_video_4_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c8b0cbc9-9bd7-421e-ac02-bc88c1fed844@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c8b0cbc9-9bd7-421e-ac02-bc88c1fed844@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "60d89861-2d5f-456e-ac32-e3ff0974571d",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d9ee2ef2-7d86-4d9c-984a-f3d2ceba9ec1",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d9ee2ef2-7d86-4d9c-984a-f3d2ceba9ec1@6c48a",
"displayName": "10009_video_5_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d9ee2ef2-7d86-4d9c-984a-f3d2ceba9ec1",
"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": "d9ee2ef2-7d86-4d9c-984a-f3d2ceba9ec1@f9941",
"displayName": "10009_video_5_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d9ee2ef2-7d86-4d9c-984a-f3d2ceba9ec1@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d9ee2ef2-7d86-4d9c-984a-f3d2ceba9ec1@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "833b31eb-19af-478e-88ec-23bd0163608e",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "833b31eb-19af-478e-88ec-23bd0163608e@6c48a",
"displayName": "10009_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "833b31eb-19af-478e-88ec-23bd0163608e",
"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": "833b31eb-19af-478e-88ec-23bd0163608e@f9941",
"displayName": "10009_video_5_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "833b31eb-19af-478e-88ec-23bd0163608e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "833b31eb-19af-478e-88ec-23bd0163608e@6c48a"
}
}
@@ -0,0 +1,12 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "253916ed-31fb-4b76-9ee8-175c5eac2126",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5e747136-22f0-4cec-a795-18245ff43528",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5e747136-22f0-4cec-a795-18245ff43528@6c48a",
"displayName": "10009_video_6_thumbnail",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5e747136-22f0-4cec-a795-18245ff43528",
"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": "5e747136-22f0-4cec-a795-18245ff43528@f9941",
"displayName": "10009_video_6_thumbnail",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5e747136-22f0-4cec-a795-18245ff43528@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5e747136-22f0-4cec-a795-18245ff43528@6c48a"
}
}
@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "dd4dbd43-5f2b-4fcc-bd3e-55b29e97fda9",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "dd4dbd43-5f2b-4fcc-bd3e-55b29e97fda9@6c48a",
"displayName": "10009_video_6_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "dd4dbd43-5f2b-4fcc-bd3e-55b29e97fda9",
"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": "dd4dbd43-5f2b-4fcc-bd3e-55b29e97fda9@f9941",
"displayName": "10009_video_6_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 384,
"height": 672,
"rawWidth": 384,
"rawHeight": 672,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192,
-336,
0,
192,
-336,
0,
-192,
336,
0,
192,
336,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
672,
384,
672,
0,
0,
384,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192,
-336,
0
],
"maxPos": [
192,
336,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "dd4dbd43-5f2b-4fcc-bd3e-55b29e97fda9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "dd4dbd43-5f2b-4fcc-bd3e-55b29e97fda9@6c48a"
}
}