update_blur

This commit is contained in:
2025-08-29 16:23:59 +08:00
parent bf92949a43
commit 3c254811f5
181 changed files with 11821 additions and 18 deletions
@@ -166,34 +166,33 @@ export class GirlDetailPanel extends li_BaseView {
// 也立即尝试调整(以防已经加载完成)
this.adjustVideoScale();
this.vids = dataDetail.commercialVideos.slice(0);
const paths = dataDetail.commercialImages.map((a) => a.path);
this.refreshImgs(paths, true);
this.refreshImgs(dataDetail.commercialImages);
}
vids: purchase.CommercialVideo[];
bindImgToggle() {
const dataDetail = ConfigManager.tables.TbGirlsDetail.get(this.id);
const paths = dataDetail.commercialImages.map((a) => a.path);
const images = dataDetail.commercialImages;
this.refreshImgs(paths, true);
this.refreshImgs(images);
}
bindVideoToggle() {
const paths = this.vids.map((a) => a.path);
this.refreshImgs(paths, false);
this.refreshImgs(this.vids);
}
refreshImgs(paths: string[], isImg: boolean) {
refreshImgs(
resouces: purchase.CommercialImage[] | purchase.CommercialVideo[]
) {
for (let i = this.imgsLayout.children.length - 1; i >= 0; i--) {
this.imgsLayout.children[i].destroy();
}
for (let i = 1; i < paths.length; i++) {
const path = paths[i];
for (let i = 1; i < resouces.length; i++) {
const resource = resouces[i];
let newNode = instantiate(this.imgItemInst.node);
let item = newNode.getComponent(DetailImageItem);
item.refresh(path, this, isImg);
item.refresh(resource, this);
newNode.active = true;
this.imgsLayout.addChild(newNode);
}
@@ -4,6 +4,7 @@ import ResManager from "db://assets/Scripts/Main/Manager/ResManager";
import { ViewManager } from "db://assets/Scripts/Main/Manager/ViewManager";
import { GButton } from "db://assets/Scripts/Main/Common/GButton";
import { GirlDetailPanel } from "../ui/panels/GirlDetailPanel";
import { purchase } from "../../schema/schema";
const { ccclass, property } = _decorator;
@@ -80,17 +81,28 @@ export class DetailImageItem extends Component {
);
}
}
refresh(path: string, base: GirlDetailPanel, isImage: boolean = true) {
refresh(
resource: purchase.CommercialImage | purchase.CommercialVideo,
base: GirlDetailPanel
) {
this.base = base;
this.lock.active = false;
this.question.active = true; // 显示问号,表示加载中
this.url = path;
this.url = resource.path;
let imgPath = this.url;
this.isImage = isImage;
if (!isImage) {
imgPath = this.url + "_thumbnail";
if (resource instanceof purchase.CommercialImage) {
this.isImage = true;
} else {
this.isImage = false;
if (resource.videoPrice > 0) {
imgPath = this.url + "_thumbnail_blur";
} else {
imgPath = this.url + "_thumbnail";
}
}
ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Chat18x", () => {
this.question.active = false; // 图片加载成功后隐藏问号
this.scaleToFillItem();
+2 -2
View File
@@ -7577,8 +7577,8 @@
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 211.231,
"y": -28.934999999999945,
"x": 253.86700000000016,
"y": -28.935000000000173,
"z": 0
},
"_lrot": {
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "43266bb8-9c32-465c-9185-ceb7fc94fcfe",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "43266bb8-9c32-465c-9185-ceb7fc94fcfe@6c48a",
"displayName": "10001_video_1_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "43266bb8-9c32-465c-9185-ceb7fc94fcfe",
"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": "43266bb8-9c32-465c-9185-ceb7fc94fcfe@f9941",
"displayName": "10001_video_1_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": "43266bb8-9c32-465c-9185-ceb7fc94fcfe@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "43266bb8-9c32-465c-9185-ceb7fc94fcfe@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "dbd69d9c-e286-4fcf-b688-279623b08aa0",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "dbd69d9c-e286-4fcf-b688-279623b08aa0@6c48a",
"displayName": "10001_video_2_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "dbd69d9c-e286-4fcf-b688-279623b08aa0",
"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": "dbd69d9c-e286-4fcf-b688-279623b08aa0@f9941",
"displayName": "10001_video_2_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": "dbd69d9c-e286-4fcf-b688-279623b08aa0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "dbd69d9c-e286-4fcf-b688-279623b08aa0@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "849cf839-4a74-4fb0-9101-1e9986731b37",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "849cf839-4a74-4fb0-9101-1e9986731b37@6c48a",
"displayName": "10001_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "849cf839-4a74-4fb0-9101-1e9986731b37",
"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": "849cf839-4a74-4fb0-9101-1e9986731b37@f9941",
"displayName": "10001_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": "849cf839-4a74-4fb0-9101-1e9986731b37@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "849cf839-4a74-4fb0-9101-1e9986731b37@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2e7c123c-4082-4e21-89c5-56bcc3e7d12b",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2e7c123c-4082-4e21-89c5-56bcc3e7d12b@6c48a",
"displayName": "10001_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2e7c123c-4082-4e21-89c5-56bcc3e7d12b",
"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": "2e7c123c-4082-4e21-89c5-56bcc3e7d12b@f9941",
"displayName": "10001_video_4_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2e7c123c-4082-4e21-89c5-56bcc3e7d12b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2e7c123c-4082-4e21-89c5-56bcc3e7d12b@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "359e7bfb-94af-4d4a-84d5-5534c51ad17b",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "359e7bfb-94af-4d4a-84d5-5534c51ad17b@6c48a",
"displayName": "10001_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "359e7bfb-94af-4d4a-84d5-5534c51ad17b",
"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": "359e7bfb-94af-4d4a-84d5-5534c51ad17b@f9941",
"displayName": "10001_video_5_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "359e7bfb-94af-4d4a-84d5-5534c51ad17b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "359e7bfb-94af-4d4a-84d5-5534c51ad17b@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e4927865-14e8-4719-bccb-ee3ce49959f9",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e4927865-14e8-4719-bccb-ee3ce49959f9@6c48a",
"displayName": "10001_video_6_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e4927865-14e8-4719-bccb-ee3ce49959f9",
"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": "e4927865-14e8-4719-bccb-ee3ce49959f9@f9941",
"displayName": "10001_video_6_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e4927865-14e8-4719-bccb-ee3ce49959f9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e4927865-14e8-4719-bccb-ee3ce49959f9@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "ded96d25-3be7-43a3-ac8e-f3b1c8f1529a",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ded96d25-3be7-43a3-ac8e-f3b1c8f1529a@6c48a",
"displayName": "10001_video_7_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ded96d25-3be7-43a3-ac8e-f3b1c8f1529a",
"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": "ded96d25-3be7-43a3-ac8e-f3b1c8f1529a@f9941",
"displayName": "10001_video_7_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ded96d25-3be7-43a3-ac8e-f3b1c8f1529a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ded96d25-3be7-43a3-ac8e-f3b1c8f1529a@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "87dd07ea-9a7f-48d8-b6b4-93fd071eb3d8",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "87dd07ea-9a7f-48d8-b6b4-93fd071eb3d8@6c48a",
"displayName": "10002_video_10_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "87dd07ea-9a7f-48d8-b6b4-93fd071eb3d8",
"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": "87dd07ea-9a7f-48d8-b6b4-93fd071eb3d8@f9941",
"displayName": "10002_video_10_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": "87dd07ea-9a7f-48d8-b6b4-93fd071eb3d8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "87dd07ea-9a7f-48d8-b6b4-93fd071eb3d8@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "27ca9431-13c3-4fca-b3ce-acce17d73620",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "27ca9431-13c3-4fca-b3ce-acce17d73620@6c48a",
"displayName": "10002_video_1_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "27ca9431-13c3-4fca-b3ce-acce17d73620",
"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": "27ca9431-13c3-4fca-b3ce-acce17d73620@f9941",
"displayName": "10002_video_1_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": "27ca9431-13c3-4fca-b3ce-acce17d73620@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "27ca9431-13c3-4fca-b3ce-acce17d73620@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "be926cbb-6c61-4cd5-9c80-b125d2b5e79c",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "be926cbb-6c61-4cd5-9c80-b125d2b5e79c@6c48a",
"displayName": "10002_video_2_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "be926cbb-6c61-4cd5-9c80-b125d2b5e79c",
"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": "be926cbb-6c61-4cd5-9c80-b125d2b5e79c@f9941",
"displayName": "10002_video_2_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "be926cbb-6c61-4cd5-9c80-b125d2b5e79c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "be926cbb-6c61-4cd5-9c80-b125d2b5e79c@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "27c376b3-be3c-429f-a4a7-9b16afcbd006",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "27c376b3-be3c-429f-a4a7-9b16afcbd006@6c48a",
"displayName": "10002_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "27c376b3-be3c-429f-a4a7-9b16afcbd006",
"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": "27c376b3-be3c-429f-a4a7-9b16afcbd006@f9941",
"displayName": "10002_video_3_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "27c376b3-be3c-429f-a4a7-9b16afcbd006@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "27c376b3-be3c-429f-a4a7-9b16afcbd006@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "73185510-da8e-429b-8bbc-125c27b9f227",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "73185510-da8e-429b-8bbc-125c27b9f227@6c48a",
"displayName": "10002_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "73185510-da8e-429b-8bbc-125c27b9f227",
"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": "73185510-da8e-429b-8bbc-125c27b9f227@f9941",
"displayName": "10002_video_4_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "73185510-da8e-429b-8bbc-125c27b9f227@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "73185510-da8e-429b-8bbc-125c27b9f227@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6510065d-c8d2-4689-a471-22f0e34bd88a",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6510065d-c8d2-4689-a471-22f0e34bd88a@6c48a",
"displayName": "10002_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6510065d-c8d2-4689-a471-22f0e34bd88a",
"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": "6510065d-c8d2-4689-a471-22f0e34bd88a@f9941",
"displayName": "10002_video_5_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6510065d-c8d2-4689-a471-22f0e34bd88a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6510065d-c8d2-4689-a471-22f0e34bd88a@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "8216baa0-e3bd-4e2e-9063-0fb588fe0a9e",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8216baa0-e3bd-4e2e-9063-0fb588fe0a9e@6c48a",
"displayName": "10002_video_6_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8216baa0-e3bd-4e2e-9063-0fb588fe0a9e",
"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": "8216baa0-e3bd-4e2e-9063-0fb588fe0a9e@f9941",
"displayName": "10002_video_6_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8216baa0-e3bd-4e2e-9063-0fb588fe0a9e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8216baa0-e3bd-4e2e-9063-0fb588fe0a9e@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6a41345e-107a-4b11-a46a-ec052b636c97",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6a41345e-107a-4b11-a46a-ec052b636c97@6c48a",
"displayName": "10002_video_7_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6a41345e-107a-4b11-a46a-ec052b636c97",
"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": "6a41345e-107a-4b11-a46a-ec052b636c97@f9941",
"displayName": "10002_video_7_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6a41345e-107a-4b11-a46a-ec052b636c97@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6a41345e-107a-4b11-a46a-ec052b636c97@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a921ec38-6c60-492e-b27d-ff465aabb33c",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a921ec38-6c60-492e-b27d-ff465aabb33c@6c48a",
"displayName": "10002_video_8_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a921ec38-6c60-492e-b27d-ff465aabb33c",
"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": "a921ec38-6c60-492e-b27d-ff465aabb33c@f9941",
"displayName": "10002_video_8_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": "a921ec38-6c60-492e-b27d-ff465aabb33c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a921ec38-6c60-492e-b27d-ff465aabb33c@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4e26fbdf-cad2-448a-982b-b941992eb9a8",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4e26fbdf-cad2-448a-982b-b941992eb9a8@6c48a",
"displayName": "10002_video_9_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4e26fbdf-cad2-448a-982b-b941992eb9a8",
"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": "4e26fbdf-cad2-448a-982b-b941992eb9a8@f9941",
"displayName": "10002_video_9_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4e26fbdf-cad2-448a-982b-b941992eb9a8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4e26fbdf-cad2-448a-982b-b941992eb9a8@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c87840ac-7c57-421c-982c-aaf70a0f225c",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c87840ac-7c57-421c-982c-aaf70a0f225c@6c48a",
"displayName": "10003_video_1_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c87840ac-7c57-421c-982c-aaf70a0f225c",
"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": "c87840ac-7c57-421c-982c-aaf70a0f225c@f9941",
"displayName": "10003_video_1_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": "c87840ac-7c57-421c-982c-aaf70a0f225c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c87840ac-7c57-421c-982c-aaf70a0f225c@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "adb32614-8e41-412b-a12c-b1a94bcfa1e3",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "adb32614-8e41-412b-a12c-b1a94bcfa1e3@6c48a",
"displayName": "10003_video_2_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "adb32614-8e41-412b-a12c-b1a94bcfa1e3",
"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": "adb32614-8e41-412b-a12c-b1a94bcfa1e3@f9941",
"displayName": "10003_video_2_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": "adb32614-8e41-412b-a12c-b1a94bcfa1e3@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "adb32614-8e41-412b-a12c-b1a94bcfa1e3@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4fd34312-0516-420d-8b22-1ad72e1bdaad",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4fd34312-0516-420d-8b22-1ad72e1bdaad@6c48a",
"displayName": "10003_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4fd34312-0516-420d-8b22-1ad72e1bdaad",
"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": "4fd34312-0516-420d-8b22-1ad72e1bdaad@f9941",
"displayName": "10003_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": "4fd34312-0516-420d-8b22-1ad72e1bdaad@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4fd34312-0516-420d-8b22-1ad72e1bdaad@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4022c19b-49e2-4cc3-9d8d-0a724cc7b972",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4022c19b-49e2-4cc3-9d8d-0a724cc7b972@6c48a",
"displayName": "10003_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4022c19b-49e2-4cc3-9d8d-0a724cc7b972",
"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": "4022c19b-49e2-4cc3-9d8d-0a724cc7b972@f9941",
"displayName": "10003_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": "4022c19b-49e2-4cc3-9d8d-0a724cc7b972@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4022c19b-49e2-4cc3-9d8d-0a724cc7b972@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2ce8b966-f106-4e92-b81b-f23cc4f350fb",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2ce8b966-f106-4e92-b81b-f23cc4f350fb@6c48a",
"displayName": "10003_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2ce8b966-f106-4e92-b81b-f23cc4f350fb",
"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": "2ce8b966-f106-4e92-b81b-f23cc4f350fb@f9941",
"displayName": "10003_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": "2ce8b966-f106-4e92-b81b-f23cc4f350fb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2ce8b966-f106-4e92-b81b-f23cc4f350fb@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "88221f94-6be2-4fdc-a451-ef0453c2bf2e",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "88221f94-6be2-4fdc-a451-ef0453c2bf2e@6c48a",
"displayName": "10004_video_1_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "88221f94-6be2-4fdc-a451-ef0453c2bf2e",
"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": "88221f94-6be2-4fdc-a451-ef0453c2bf2e@f9941",
"displayName": "10004_video_1_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "88221f94-6be2-4fdc-a451-ef0453c2bf2e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "88221f94-6be2-4fdc-a451-ef0453c2bf2e@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "7c8aef70-7b0c-490e-ab97-c2b73e893b8d",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7c8aef70-7b0c-490e-ab97-c2b73e893b8d@6c48a",
"displayName": "10004_video_2_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7c8aef70-7b0c-490e-ab97-c2b73e893b8d",
"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": "7c8aef70-7b0c-490e-ab97-c2b73e893b8d@f9941",
"displayName": "10004_video_2_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7c8aef70-7b0c-490e-ab97-c2b73e893b8d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7c8aef70-7b0c-490e-ab97-c2b73e893b8d@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "84bc6bed-be3c-4109-a161-dcfdcc4a1482",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "84bc6bed-be3c-4109-a161-dcfdcc4a1482@6c48a",
"displayName": "10004_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "84bc6bed-be3c-4109-a161-dcfdcc4a1482",
"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": "84bc6bed-be3c-4109-a161-dcfdcc4a1482@f9941",
"displayName": "10004_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": "84bc6bed-be3c-4109-a161-dcfdcc4a1482@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "84bc6bed-be3c-4109-a161-dcfdcc4a1482@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "84aff12a-70b3-465a-94ac-203c3423153f",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "84aff12a-70b3-465a-94ac-203c3423153f@6c48a",
"displayName": "10004_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "84aff12a-70b3-465a-94ac-203c3423153f",
"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": "84aff12a-70b3-465a-94ac-203c3423153f@f9941",
"displayName": "10004_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": "84aff12a-70b3-465a-94ac-203c3423153f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "84aff12a-70b3-465a-94ac-203c3423153f@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "39a3170d-bef3-4108-953d-032caac5fbee",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "39a3170d-bef3-4108-953d-032caac5fbee@6c48a",
"displayName": "10004_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "39a3170d-bef3-4108-953d-032caac5fbee",
"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": "39a3170d-bef3-4108-953d-032caac5fbee@f9941",
"displayName": "10004_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": "39a3170d-bef3-4108-953d-032caac5fbee@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "39a3170d-bef3-4108-953d-032caac5fbee@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "12703b63-b9a1-4243-8701-f3fcfa533a51",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "12703b63-b9a1-4243-8701-f3fcfa533a51@6c48a",
"displayName": "10004_video_6_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "12703b63-b9a1-4243-8701-f3fcfa533a51",
"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": "12703b63-b9a1-4243-8701-f3fcfa533a51@f9941",
"displayName": "10004_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": "12703b63-b9a1-4243-8701-f3fcfa533a51@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "12703b63-b9a1-4243-8701-f3fcfa533a51@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "df67431b-d86d-4511-865d-eac19ede215c",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "df67431b-d86d-4511-865d-eac19ede215c@6c48a",
"displayName": "10004_video_7_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "df67431b-d86d-4511-865d-eac19ede215c",
"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": "df67431b-d86d-4511-865d-eac19ede215c@f9941",
"displayName": "10004_video_7_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "df67431b-d86d-4511-865d-eac19ede215c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "df67431b-d86d-4511-865d-eac19ede215c@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "98fb18dd-7b93-430f-aebf-81e90b35cb93",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "98fb18dd-7b93-430f-aebf-81e90b35cb93@6c48a",
"displayName": "10004_video_8_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "98fb18dd-7b93-430f-aebf-81e90b35cb93",
"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": "98fb18dd-7b93-430f-aebf-81e90b35cb93@f9941",
"displayName": "10004_video_8_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "98fb18dd-7b93-430f-aebf-81e90b35cb93@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "98fb18dd-7b93-430f-aebf-81e90b35cb93@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3c82a2dd-af66-4abb-b785-290b9cbd5cc9",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3c82a2dd-af66-4abb-b785-290b9cbd5cc9@6c48a",
"displayName": "10004_video_9_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3c82a2dd-af66-4abb-b785-290b9cbd5cc9",
"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": "3c82a2dd-af66-4abb-b785-290b9cbd5cc9@f9941",
"displayName": "10004_video_9_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3c82a2dd-af66-4abb-b785-290b9cbd5cc9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3c82a2dd-af66-4abb-b785-290b9cbd5cc9@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b2fe2d38-aede-48a9-b67a-805a4190b641",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b2fe2d38-aede-48a9-b67a-805a4190b641@6c48a",
"displayName": "10005_video_10_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b2fe2d38-aede-48a9-b67a-805a4190b641",
"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": "b2fe2d38-aede-48a9-b67a-805a4190b641@f9941",
"displayName": "10005_video_10_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": "b2fe2d38-aede-48a9-b67a-805a4190b641@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b2fe2d38-aede-48a9-b67a-805a4190b641@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0dac92f4-ca7c-46d0-bbc6-dc43eee55ba8",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0dac92f4-ca7c-46d0-bbc6-dc43eee55ba8@6c48a",
"displayName": "10005_video_1_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0dac92f4-ca7c-46d0-bbc6-dc43eee55ba8",
"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": "0dac92f4-ca7c-46d0-bbc6-dc43eee55ba8@f9941",
"displayName": "10005_video_1_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0dac92f4-ca7c-46d0-bbc6-dc43eee55ba8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0dac92f4-ca7c-46d0-bbc6-dc43eee55ba8@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "62ed01ed-dec3-40eb-9407-4a86d904a85b",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "62ed01ed-dec3-40eb-9407-4a86d904a85b@6c48a",
"displayName": "10005_video_2_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "62ed01ed-dec3-40eb-9407-4a86d904a85b",
"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": "62ed01ed-dec3-40eb-9407-4a86d904a85b@f9941",
"displayName": "10005_video_2_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "62ed01ed-dec3-40eb-9407-4a86d904a85b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "62ed01ed-dec3-40eb-9407-4a86d904a85b@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b23c9476-55f2-404e-a3a5-8ffa859adce4",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b23c9476-55f2-404e-a3a5-8ffa859adce4@6c48a",
"displayName": "10005_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b23c9476-55f2-404e-a3a5-8ffa859adce4",
"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": "b23c9476-55f2-404e-a3a5-8ffa859adce4@f9941",
"displayName": "10005_video_3_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b23c9476-55f2-404e-a3a5-8ffa859adce4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b23c9476-55f2-404e-a3a5-8ffa859adce4@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2fd6c451-0879-4439-accc-4342b738b395",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2fd6c451-0879-4439-accc-4342b738b395@6c48a",
"displayName": "10005_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2fd6c451-0879-4439-accc-4342b738b395",
"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": "2fd6c451-0879-4439-accc-4342b738b395@f9941",
"displayName": "10005_video_4_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2fd6c451-0879-4439-accc-4342b738b395@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2fd6c451-0879-4439-accc-4342b738b395@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d89f04ff-d432-43d9-9e05-b7afc74ef754",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d89f04ff-d432-43d9-9e05-b7afc74ef754@6c48a",
"displayName": "10005_video_5_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d89f04ff-d432-43d9-9e05-b7afc74ef754",
"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": "d89f04ff-d432-43d9-9e05-b7afc74ef754@f9941",
"displayName": "10005_video_5_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d89f04ff-d432-43d9-9e05-b7afc74ef754@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d89f04ff-d432-43d9-9e05-b7afc74ef754@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6f61ac94-98fc-40c4-a442-be11d01e69e5",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6f61ac94-98fc-40c4-a442-be11d01e69e5@6c48a",
"displayName": "10005_video_6_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6f61ac94-98fc-40c4-a442-be11d01e69e5",
"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": "6f61ac94-98fc-40c4-a442-be11d01e69e5@f9941",
"displayName": "10005_video_6_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6f61ac94-98fc-40c4-a442-be11d01e69e5@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6f61ac94-98fc-40c4-a442-be11d01e69e5@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b23ec3ea-a824-4923-a170-36a462134b68",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b23ec3ea-a824-4923-a170-36a462134b68@6c48a",
"displayName": "10005_video_7_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b23ec3ea-a824-4923-a170-36a462134b68",
"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": "b23ec3ea-a824-4923-a170-36a462134b68@f9941",
"displayName": "10005_video_7_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 672,
"height": 864,
"rawWidth": 672,
"rawHeight": 864,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-336,
-432,
0,
336,
-432,
0,
-336,
432,
0,
336,
432,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
864,
672,
864,
0,
0,
672,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-336,
-432,
0
],
"maxPos": [
336,
432,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b23ec3ea-a824-4923-a170-36a462134b68@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b23ec3ea-a824-4923-a170-36a462134b68@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "cf436705-a279-4b44-a77c-c84e2c9fc735",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "cf436705-a279-4b44-a77c-c84e2c9fc735@6c48a",
"displayName": "10005_video_8_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "cf436705-a279-4b44-a77c-c84e2c9fc735",
"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": "cf436705-a279-4b44-a77c-c84e2c9fc735@f9941",
"displayName": "10005_video_8_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": "cf436705-a279-4b44-a77c-c84e2c9fc735@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "cf436705-a279-4b44-a77c-c84e2c9fc735@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c4e52e49-f9b8-4244-85ee-c9e5061994de",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c4e52e49-f9b8-4244-85ee-c9e5061994de@6c48a",
"displayName": "10005_video_9_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c4e52e49-f9b8-4244-85ee-c9e5061994de",
"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": "c4e52e49-f9b8-4244-85ee-c9e5061994de@f9941",
"displayName": "10005_video_9_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": "c4e52e49-f9b8-4244-85ee-c9e5061994de@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c4e52e49-f9b8-4244-85ee-c9e5061994de@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "52bcd0cb-1129-46a4-8fec-d28c2578c039",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "52bcd0cb-1129-46a4-8fec-d28c2578c039@6c48a",
"displayName": "10006_video_1_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "52bcd0cb-1129-46a4-8fec-d28c2578c039",
"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": "52bcd0cb-1129-46a4-8fec-d28c2578c039@f9941",
"displayName": "10006_video_1_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": "52bcd0cb-1129-46a4-8fec-d28c2578c039@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "52bcd0cb-1129-46a4-8fec-d28c2578c039@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "665b7dc8-5b5d-4b35-be19-6febda42a6a0",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "665b7dc8-5b5d-4b35-be19-6febda42a6a0@6c48a",
"displayName": "10006_video_2_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "665b7dc8-5b5d-4b35-be19-6febda42a6a0",
"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": "665b7dc8-5b5d-4b35-be19-6febda42a6a0@f9941",
"displayName": "10006_video_2_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": "665b7dc8-5b5d-4b35-be19-6febda42a6a0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "665b7dc8-5b5d-4b35-be19-6febda42a6a0@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5ebc3bf3-d1b9-4d38-bbd8-7dc94c90b538",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5ebc3bf3-d1b9-4d38-bbd8-7dc94c90b538@6c48a",
"displayName": "10006_video_3_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5ebc3bf3-d1b9-4d38-bbd8-7dc94c90b538",
"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": "5ebc3bf3-d1b9-4d38-bbd8-7dc94c90b538@f9941",
"displayName": "10006_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": "5ebc3bf3-d1b9-4d38-bbd8-7dc94c90b538@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5ebc3bf3-d1b9-4d38-bbd8-7dc94c90b538@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "499cae6a-9fef-43fc-8011-0096619dea44",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "499cae6a-9fef-43fc-8011-0096619dea44@6c48a",
"displayName": "10006_video_4_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "499cae6a-9fef-43fc-8011-0096619dea44",
"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": "499cae6a-9fef-43fc-8011-0096619dea44@f9941",
"displayName": "10006_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": "499cae6a-9fef-43fc-8011-0096619dea44@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "499cae6a-9fef-43fc-8011-0096619dea44@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "bb0eec8b-3f5c-4ba3-b7e6-57f82c0ca228",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bb0eec8b-3f5c-4ba3-b7e6-57f82c0ca228@6c48a",
"displayName": "10007_video_10_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bb0eec8b-3f5c-4ba3-b7e6-57f82c0ca228",
"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": "bb0eec8b-3f5c-4ba3-b7e6-57f82c0ca228@f9941",
"displayName": "10007_video_10_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": "bb0eec8b-3f5c-4ba3-b7e6-57f82c0ca228@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bb0eec8b-3f5c-4ba3-b7e6-57f82c0ca228@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3447f239-dd06-46ac-988e-bc1843609162",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3447f239-dd06-46ac-988e-bc1843609162@6c48a",
"displayName": "10007_video_11_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3447f239-dd06-46ac-988e-bc1843609162",
"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": "3447f239-dd06-46ac-988e-bc1843609162@f9941",
"displayName": "10007_video_11_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": "3447f239-dd06-46ac-988e-bc1843609162@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3447f239-dd06-46ac-988e-bc1843609162@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "dd3e575a-b891-48ce-8186-f913bb6ae2ed",
"files": [
".jpg",
".json"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "dd3e575a-b891-48ce-8186-f913bb6ae2ed@6c48a",
"displayName": "10007_video_12_thumbnail_blur",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "dd3e575a-b891-48ce-8186-f913bb6ae2ed",
"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": "dd3e575a-b891-48ce-8186-f913bb6ae2ed@f9941",
"displayName": "10007_video_12_thumbnail_blur",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 448,
"height": 576,
"rawWidth": 448,
"rawHeight": 576,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-224,
-288,
0,
224,
-288,
0,
-224,
288,
0,
224,
288,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
576,
448,
576,
0,
0,
448,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-224,
-288,
0
],
"maxPos": [
224,
288,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "dd3e575a-b891-48ce-8186-f913bb6ae2ed@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "dd3e575a-b891-48ce-8186-f913bb6ae2ed@6c48a"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Some files were not shown because too many files have changed in this diff Show More