This commit is contained in:
2025-08-12 20:37:46 +08:00
parent dfa3179094
commit 0997aa9a04
107 changed files with 20 additions and 3511 deletions
Binary file not shown.
Binary file not shown.
@@ -1,165 +0,0 @@
import { _decorator, Component, Node, Button, Label, instantiate, Prefab, ScrollView, Layout, Color, Sprite } from 'cc';
import li_BaseView from '../../Main/Common/li_BaseView';
import LanguageUtils, { LanguageType } from '../../Main/Common/LanguageUtils';
import Utils from '../../Main/Common/Utils';
import AudioManager from '../../Main/Manager/AudioManager';
const { ccclass, property } = _decorator;
@ccclass('LanguageSelectPanel')
export class LanguageSelectPanel extends li_BaseView {
@property(Node)
private contentNode: Node = null;
@property(Node)
private itemTemplate: Node = null;
@property(Button)
private closeBtn: Button = null;
@property(Label)
private titleLabel: Label = null;
private languageItems: Map<LanguageType, Node> = new Map();
private currentSelectedLang: LanguageType = null;
onLoadCT() {
super.onLoadCT();
this.initUI();
this.bindEvents();
}
onEnable() {
this.currentSelectedLang = LanguageUtils.CurrentLanguage;
this.createLanguageItems();
this.updateSelection();
}
private initUI() {
if (this.titleLabel) {
this.titleLabel.string = "Select Language / 选择语言";
}
if (this.itemTemplate) {
this.itemTemplate.active = false;
}
}
private bindEvents() {
if (this.closeBtn) {
this.closeBtn.node.on(Button.EventType.CLICK, this.onCloseBtnClick, this);
}
}
private createLanguageItems() {
if (!this.contentNode || !this.itemTemplate) {
console.error("LanguageSelectPanel: contentNode or itemTemplate is null");
return;
}
// 清除旧的语言项
this.languageItems.clear();
this.contentNode.removeAllChildren();
const availableLanguages = LanguageUtils.getAvailableLanguages();
availableLanguages.forEach((lang, index) => {
const item = instantiate(this.itemTemplate);
item.active = true;
// 设置语言名称
const nameLabel = item.getChildByName("NameLabel");
if (nameLabel) {
const label = nameLabel.getComponent(Label);
if (label) {
label.string = LanguageUtils.getLanguageDisplayName(lang);
}
}
// 设置语言代码
const codeLabel = item.getChildByName("CodeLabel");
if (codeLabel) {
const label = codeLabel.getComponent(Label);
if (label) {
label.string = `(${lang.toUpperCase()})`;
label.color = new Color(150, 150, 150);
}
}
// 设置选中标记
const checkMark = item.getChildByName("CheckMark");
if (checkMark) {
checkMark.active = false;
}
// 绑定点击事件
const button = item.getComponent(Button);
if (!button) {
item.addComponent(Button);
}
item.on(Button.EventType.CLICK, () => {
this.onLanguageItemClick(lang);
}, this);
this.contentNode.addChild(item);
this.languageItems.set(lang, item);
});
}
private onLanguageItemClick(language: LanguageType) {
if (this.currentSelectedLang === language) {
return;
}
AudioManager.I.playSfx("click");
this.currentSelectedLang = language;
LanguageUtils.setLanguage(language);
this.updateSelection();
// 延迟关闭面板,让用户看到选择效果
this.scheduleOnce(() => {
this.close();
}, 0.3);
}
private updateSelection() {
this.languageItems.forEach((item, lang) => {
const checkMark = item.getChildByName("CheckMark");
if (checkMark) {
checkMark.active = lang === this.currentSelectedLang;
}
// 更新背景色或边框来表示选中状态
const bg = item.getChildByName("Bg");
if (bg) {
const sprite = bg.getComponent(Sprite);
if (sprite) {
if (lang === this.currentSelectedLang) {
sprite.color = new Color(100, 200, 100, 255);
} else {
sprite.color = new Color(255, 255, 255, 255);
}
}
}
});
}
private onCloseBtnClick() {
AudioManager.I.playSfx("click");
this.close();
}
onDestroy() {
if (this.closeBtn) {
this.closeBtn.node.off(Button.EventType.CLICK, this.onCloseBtnClick, this);
}
this.languageItems.forEach((item) => {
item.targetOff(this);
});
super.onDestroy();
}
}
@@ -1,9 +0,0 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "a9f8c2d1-7e6b-4a3c-9d5f-2b1e8c7f9a4d",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -1,122 +0,0 @@
import { _decorator, Component, Node, Button, Label, Sprite } from 'cc';
import LanguageUtils, { LanguageType } from '../../Main/Common/LanguageUtils';
import { ViewManager } from '../../Main/Manager/ViewManager';
import AudioManager from '../../Main/Manager/AudioManager';
const { ccclass, property } = _decorator;
@ccclass('LanguageToggleButton')
export class LanguageToggleButton extends Component {
@property(Label)
private languageLabel: Label = null;
@property(Sprite)
private flagIcon: Sprite = null;
@property({
displayName: "Panel Prefab Path",
tooltip: "语言选择面板的预制体路径"
})
private panelPath: string = "prefabs/UI/SimpleLanguagePanel";
private button: Button = null;
onLoad() {
this.button = this.node.getComponent(Button);
if (!this.button) {
this.button = this.node.addComponent(Button);
}
this.bindEvents();
this.updateDisplay();
}
onEnable() {
this.updateDisplay();
LanguageUtils.onLanguageChanged(this.onLanguageChanged, this);
}
onDisable() {
LanguageUtils.offLanguageChanged(this.onLanguageChanged, this);
}
private bindEvents() {
if (this.button) {
this.button.node.on(Button.EventType.CLICK, this.onClick, this);
}
}
private onClick() {
AudioManager.I.playSfx("click");
// 快速切换模式(循环切换语言)
if (this.isQuickToggleMode()) {
this.quickToggleLanguage();
} else {
// 打开语言选择面板
this.openLanguagePanel();
}
}
private isQuickToggleMode(): boolean {
// 可以通过按住Shift键或其他条件来判断是否快速切换
return false;
}
private quickToggleLanguage() {
const languages = LanguageUtils.getAvailableLanguages();
const currentLang = LanguageUtils.CurrentLanguage;
const currentIndex = languages.indexOf(currentLang);
const nextIndex = (currentIndex + 1) % languages.length;
LanguageUtils.setLanguage(languages[nextIndex]);
}
private openLanguagePanel() {
// 使用ViewManager打开语言选择面板
if (this.panelPath && this.panelPath.length > 0) {
ViewManager.I.openView(this.panelPath);
} else {
console.warn("Language panel path not set!");
// 如果没有设置面板路径,使用快速切换
this.quickToggleLanguage();
}
}
private onLanguageChanged(language: LanguageType) {
this.updateDisplay();
}
private updateDisplay() {
const currentLang = LanguageUtils.CurrentLanguage;
if (this.languageLabel) {
// 显示当前语言的缩写或名称
this.languageLabel.string = this.getLanguageDisplay(currentLang);
}
// 如果有旗帜图标,可以在这里更新
if (this.flagIcon) {
// 需要根据语言加载对应的旗帜图标
// this.loadFlagIcon(currentLang);
}
}
private getLanguageDisplay(language: LanguageType): string {
// 可以选择显示缩写或完整名称
const useAbbreviation = true;
if (useAbbreviation) {
return language.toUpperCase();
} else {
return LanguageUtils.getLanguageDisplayName(language);
}
}
onDestroy() {
if (this.button) {
this.button.node.off(Button.EventType.CLICK, this.onClick, this);
}
LanguageUtils.offLanguageChanged(this.onLanguageChanged, this);
}
}
@@ -1,9 +0,0 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "c4e7b9d2-8a3f-4c5e-b7d1-6e9f8a2c5b4d",
"files": [],
"subMetas": {},
"userData": {}
}
@@ -73,10 +73,12 @@ export class GirlDetailPanel extends li_BaseView {
}
nameKey: string;
tagKey: string;
category;
refresh(index: number) {
console.log(index);
const dataDetail = ConfigManager.tables.TbGirlsDetail.get(this.id);
const data = ConfigManager.tables.TbGirls.get(this.id);
this.category = data.category;
this.nameKey = data.nameKey;
this.girlName.string = this.descName.string = LanguageUtils.getText(
data.nameKey
@@ -128,7 +130,7 @@ export class GirlDetailPanel extends li_BaseView {
returnBtn() {
this.onClose();
NavigationManager.Instance.navigateToGirlList(1001);
NavigationManager.Instance.navigateToGirlList(this.category);
//ViewManager.I.openBundlesView("GirlListPanel");
}
}
@@ -2,7 +2,7 @@
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "78d64637-d169-403f-8c46-b7d968525e51",
"uuid": "a4463b98-ea4e-4d51-b92b-3b86a78992b0",
"files": [],
"subMetas": {},
"userData": {}
+6 -12
View File
@@ -963,10 +963,7 @@
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "b33e3b8b-7653-4b7d-a17a-8da09866653a@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_spriteFrame": null,
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
@@ -4611,8 +4608,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 222.5,
"height": 1016
"width": 448,
"height": 576
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -4639,8 +4636,8 @@
},
"_alignFlags": 45,
"_target": null,
"_left": 361,
"_right": 361,
"_left": 359.5,
"_right": 359.5,
"_top": 300,
"_bottom": 200,
"_horizontalCenter": 0,
@@ -5097,10 +5094,7 @@
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "a607644d-08ae-4bd1-b897-5954221e6e32@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_spriteFrame": null,
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
@@ -952,8 +952,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 483.7,
"height": 700
"width": 448,
"height": 576
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -4490,12 +4490,12 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "b52ee52c-688d-463d-9ce0-77caf509e65c@f9941",
"__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 1,
"_fillType": 0,
"_sizeMode": 1,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
+1 -4
View File
@@ -1334,10 +1334,7 @@
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "b33e3b8b-7653-4b7d-a17a-8da09866653a@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_spriteFrame": null,
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 684 KiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a607644d-08ae-4bd1-b897-5954221e6e32",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a607644d-08ae-4bd1-b897-5954221e6e32@6c48a",
"displayName": "blur_naked_1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a607644d-08ae-4bd1-b897-5954221e6e32",
"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": "a607644d-08ae-4bd1-b897-5954221e6e32@f9941",
"displayName": "blur_naked_1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 960,
"height": 1664,
"rawWidth": 960,
"rawHeight": 1664,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-480,
-832,
0,
480,
-832,
0,
-480,
832,
0,
480,
832,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
1664,
960,
1664,
0,
0,
960,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-480,
-832,
0
],
"maxPos": [
480,
832,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a607644d-08ae-4bd1-b897-5954221e6e32@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a607644d-08ae-4bd1-b897-5954221e6e32@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d6b3a411-98f5-42ca-993e-9eed74d75a81",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d6b3a411-98f5-42ca-993e-9eed74d75a81@6c48a",
"displayName": "naked_1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d6b3a411-98f5-42ca-993e-9eed74d75a81",
"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": "d6b3a411-98f5-42ca-993e-9eed74d75a81@f9941",
"displayName": "naked_1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 960,
"height": 1664,
"rawWidth": 960,
"rawHeight": 1664,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-480,
-832,
0,
480,
-832,
0,
-480,
832,
0,
480,
832,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
1664,
960,
1664,
0,
0,
960,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-480,
-832,
0
],
"maxPos": [
480,
832,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d6b3a411-98f5-42ca-993e-9eed74d75a81@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d6b3a411-98f5-42ca-993e-9eed74d75a81@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b52ee52c-688d-463d-9ce0-77caf509e65c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b52ee52c-688d-463d-9ce0-77caf509e65c@6c48a",
"displayName": "10013",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b52ee52c-688d-463d-9ce0-77caf509e65c",
"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": "b52ee52c-688d-463d-9ce0-77caf509e65c@f9941",
"displayName": "10013",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b52ee52c-688d-463d-9ce0-77caf509e65c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b52ee52c-688d-463d-9ce0-77caf509e65c@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "dab32d51-99c8-4a6e-9968-4bb6e0fff021",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "dab32d51-99c8-4a6e-9968-4bb6e0fff021@6c48a",
"displayName": "10014",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "dab32d51-99c8-4a6e-9968-4bb6e0fff021",
"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": "dab32d51-99c8-4a6e-9968-4bb6e0fff021@f9941",
"displayName": "10014",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "dab32d51-99c8-4a6e-9968-4bb6e0fff021@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "dab32d51-99c8-4a6e-9968-4bb6e0fff021@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 127 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "48807a62-086e-4e57-aee3-8d9d578c1fa4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "48807a62-086e-4e57-aee3-8d9d578c1fa4@6c48a",
"displayName": "10015",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "48807a62-086e-4e57-aee3-8d9d578c1fa4",
"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": "48807a62-086e-4e57-aee3-8d9d578c1fa4@f9941",
"displayName": "10015",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "48807a62-086e-4e57-aee3-8d9d578c1fa4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "48807a62-086e-4e57-aee3-8d9d578c1fa4@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "214b6254-a780-4e34-a97c-f33c2ba8c1eb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "214b6254-a780-4e34-a97c-f33c2ba8c1eb@6c48a",
"displayName": "10017",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "214b6254-a780-4e34-a97c-f33c2ba8c1eb",
"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": "214b6254-a780-4e34-a97c-f33c2ba8c1eb@f9941",
"displayName": "10017",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "214b6254-a780-4e34-a97c-f33c2ba8c1eb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "214b6254-a780-4e34-a97c-f33c2ba8c1eb@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "af7fc180-9f13-45f4-8ac7-953e05457b1d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "af7fc180-9f13-45f4-8ac7-953e05457b1d@6c48a",
"displayName": "10018",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "af7fc180-9f13-45f4-8ac7-953e05457b1d",
"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": "af7fc180-9f13-45f4-8ac7-953e05457b1d@f9941",
"displayName": "10018",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "af7fc180-9f13-45f4-8ac7-953e05457b1d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "af7fc180-9f13-45f4-8ac7-953e05457b1d@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c7080271-7e8e-4157-849a-733bc7e7ab4f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c7080271-7e8e-4157-849a-733bc7e7ab4f@6c48a",
"displayName": "10019",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c7080271-7e8e-4157-849a-733bc7e7ab4f",
"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": "c7080271-7e8e-4157-849a-733bc7e7ab4f@f9941",
"displayName": "10019",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c7080271-7e8e-4157-849a-733bc7e7ab4f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c7080271-7e8e-4157-849a-733bc7e7ab4f@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4d4891b9-fe31-4a10-8c12-bef4e03cc8c4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4d4891b9-fe31-4a10-8c12-bef4e03cc8c4@6c48a",
"displayName": "10020",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4d4891b9-fe31-4a10-8c12-bef4e03cc8c4",
"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": "4d4891b9-fe31-4a10-8c12-bef4e03cc8c4@f9941",
"displayName": "10020",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4d4891b9-fe31-4a10-8c12-bef4e03cc8c4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4d4891b9-fe31-4a10-8c12-bef4e03cc8c4@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e06cae3b-a12f-4ed8-8d5a-26f14a20334c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e06cae3b-a12f-4ed8-8d5a-26f14a20334c@6c48a",
"displayName": "10021",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e06cae3b-a12f-4ed8-8d5a-26f14a20334c",
"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": "e06cae3b-a12f-4ed8-8d5a-26f14a20334c@f9941",
"displayName": "10021",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e06cae3b-a12f-4ed8-8d5a-26f14a20334c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e06cae3b-a12f-4ed8-8d5a-26f14a20334c@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e551bb46-4ffc-4c18-bf4b-84029026643c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e551bb46-4ffc-4c18-bf4b-84029026643c@6c48a",
"displayName": "10026",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e551bb46-4ffc-4c18-bf4b-84029026643c",
"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": "e551bb46-4ffc-4c18-bf4b-84029026643c@f9941",
"displayName": "10026",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e551bb46-4ffc-4c18-bf4b-84029026643c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e551bb46-4ffc-4c18-bf4b-84029026643c@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b09711ba-1f3d-4cc8-b68f-0331af87932d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b09711ba-1f3d-4cc8-b68f-0331af87932d@6c48a",
"displayName": "10027",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b09711ba-1f3d-4cc8-b68f-0331af87932d",
"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": "b09711ba-1f3d-4cc8-b68f-0331af87932d@f9941",
"displayName": "10027",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b09711ba-1f3d-4cc8-b68f-0331af87932d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b09711ba-1f3d-4cc8-b68f-0331af87932d@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "12e80f95-d9de-43a9-a65b-a83909a23b84",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "12e80f95-d9de-43a9-a65b-a83909a23b84@6c48a",
"displayName": "10028",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "12e80f95-d9de-43a9-a65b-a83909a23b84",
"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": "12e80f95-d9de-43a9-a65b-a83909a23b84@f9941",
"displayName": "10028",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "12e80f95-d9de-43a9-a65b-a83909a23b84@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "12e80f95-d9de-43a9-a65b-a83909a23b84@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b0f4a592-a7d6-4785-9a21-c2190501b8c0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b0f4a592-a7d6-4785-9a21-c2190501b8c0@6c48a",
"displayName": "10029",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b0f4a592-a7d6-4785-9a21-c2190501b8c0",
"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": "b0f4a592-a7d6-4785-9a21-c2190501b8c0@f9941",
"displayName": "10029",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b0f4a592-a7d6-4785-9a21-c2190501b8c0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b0f4a592-a7d6-4785-9a21-c2190501b8c0@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "ae3d0c33-5417-4806-8a65-21dad14a5e66",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ae3d0c33-5417-4806-8a65-21dad14a5e66@6c48a",
"displayName": "10030",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ae3d0c33-5417-4806-8a65-21dad14a5e66",
"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": "ae3d0c33-5417-4806-8a65-21dad14a5e66@f9941",
"displayName": "10030",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ae3d0c33-5417-4806-8a65-21dad14a5e66@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ae3d0c33-5417-4806-8a65-21dad14a5e66@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "97f4d731-e2a7-440d-b2b9-8d21dcdc9148",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "97f4d731-e2a7-440d-b2b9-8d21dcdc9148@6c48a",
"displayName": "10032",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "97f4d731-e2a7-440d-b2b9-8d21dcdc9148",
"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": "97f4d731-e2a7-440d-b2b9-8d21dcdc9148@f9941",
"displayName": "10032",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "97f4d731-e2a7-440d-b2b9-8d21dcdc9148@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "97f4d731-e2a7-440d-b2b9-8d21dcdc9148@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "87e53461-48cb-4a45-98f3-67a247ded6ca",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "87e53461-48cb-4a45-98f3-67a247ded6ca@6c48a",
"displayName": "10036",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "87e53461-48cb-4a45-98f3-67a247ded6ca",
"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": "87e53461-48cb-4a45-98f3-67a247ded6ca@f9941",
"displayName": "10036",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "87e53461-48cb-4a45-98f3-67a247ded6ca@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "87e53461-48cb-4a45-98f3-67a247ded6ca@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "578023e1-38c9-4090-93bf-93de3988ab47",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "578023e1-38c9-4090-93bf-93de3988ab47@6c48a",
"displayName": "10037",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "578023e1-38c9-4090-93bf-93de3988ab47",
"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": "578023e1-38c9-4090-93bf-93de3988ab47@f9941",
"displayName": "10037",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "578023e1-38c9-4090-93bf-93de3988ab47@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "578023e1-38c9-4090-93bf-93de3988ab47@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 118 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e49d884e-904c-4853-a7a3-d5e86e2a3fde",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e49d884e-904c-4853-a7a3-d5e86e2a3fde@6c48a",
"displayName": "10038",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e49d884e-904c-4853-a7a3-d5e86e2a3fde",
"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": "e49d884e-904c-4853-a7a3-d5e86e2a3fde@f9941",
"displayName": "10038",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e49d884e-904c-4853-a7a3-d5e86e2a3fde@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e49d884e-904c-4853-a7a3-d5e86e2a3fde@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c67c057e-8dbe-42a4-a6b5-7e5e92504112",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c67c057e-8dbe-42a4-a6b5-7e5e92504112@6c48a",
"displayName": "10039",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c67c057e-8dbe-42a4-a6b5-7e5e92504112",
"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": "c67c057e-8dbe-42a4-a6b5-7e5e92504112@f9941",
"displayName": "10039",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c67c057e-8dbe-42a4-a6b5-7e5e92504112@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c67c057e-8dbe-42a4-a6b5-7e5e92504112@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "95454568-0905-4a9a-917a-1cdb7bbb1a8c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "95454568-0905-4a9a-917a-1cdb7bbb1a8c@6c48a",
"displayName": "10041",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "95454568-0905-4a9a-917a-1cdb7bbb1a8c",
"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": "95454568-0905-4a9a-917a-1cdb7bbb1a8c@f9941",
"displayName": "10041",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "95454568-0905-4a9a-917a-1cdb7bbb1a8c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "95454568-0905-4a9a-917a-1cdb7bbb1a8c@6c48a"
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f68313bf-054d-476d-8fb0-8c924bde62eb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f68313bf-054d-476d-8fb0-8c924bde62eb@6c48a",
"displayName": "10044",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f68313bf-054d-476d-8fb0-8c924bde62eb",
"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": "f68313bf-054d-476d-8fb0-8c924bde62eb@f9941",
"displayName": "10044",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 360,
"height": 540,
"rawWidth": 360,
"rawHeight": 540,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-270,
0,
180,
-270,
0,
-180,
270,
0,
180,
270,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
540,
360,
540,
0,
0,
360,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-180,
-270,
0
],
"maxPos": [
180,
270,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f68313bf-054d-476d-8fb0-8c924bde62eb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f68313bf-054d-476d-8fb0-8c924bde62eb@6c48a"
}
}
@@ -1,12 +0,0 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "568deace-15c2-4a41-8cbb-d9b02459e8a8",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -1 +0,0 @@
{"ver":"1.0.0","importer":"video-clip","imported":true,"uuid":"e170b96a-968a-425f-9f1a-a0f1e8a59c39","files":[".json",".mp4"],"subMetas":{},"userData":{}}
@@ -1,12 +0,0 @@
{
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "97447d1e-f94f-44dc-9a8f-a0a7da9b0055",
"files": [
".json",
".mp4"
],
"subMetas": {},
"userData": {}
}
@@ -2,7 +2,7 @@
"ver": "1.0.0",
"importer": "video-clip",
"imported": true,
"uuid": "06ba55f7-af6a-4597-ab64-20e5534a6410",
"uuid": "0053e5df-a280-43b1-8dc6-ea5458b7c177",
"files": [
".json",
".mp4"
+4 -4
View File
@@ -139,7 +139,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1170,
"width": 1167,
"height": 2532
},
"_anchorPoint": {
@@ -450,7 +450,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1170,
"width": 1167,
"height": 2532
},
"_anchorPoint": {
@@ -501,7 +501,7 @@
"fileId": "cd1+ED5FxIYpcAIWPNDCw7"
},
{
"__type__": "b76452gO4FFS4lWBoSRzkcG",
"__type__": "4630039sQxCWJVTUtt07CeZ",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
@@ -523,7 +523,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bdxGnD37hASKBbbGc1wnrj"
"fileId": "40lQ0ZnINAdq8QH3yyaj4k"
},
{
"__type__": "cc.PrefabInfo",
-9
View File
@@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "a861708d-2bb1-403e-9c83-9f30dac2db1d",
"files": [],
"subMetas": {},
"userData": {}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

-134
View File
@@ -1,134 +0,0 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b33e3b8b-7653-4b7d-a17a-8da09866653a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b33e3b8b-7653-4b7d-a17a-8da09866653a@6c48a",
"displayName": "1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b33e3b8b-7653-4b7d-a17a-8da09866653a",
"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": "b33e3b8b-7653-4b7d-a17a-8da09866653a@f9941",
"displayName": "1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 218,
"height": 218,
"rawWidth": 218,
"rawHeight": 218,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-109,
-109,
0,
109,
-109,
0,
-109,
109,
0,
109,
109,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
218,
218,
218,
0,
0,
218,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-109,
-109,
0
],
"maxPos": [
109,
109,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b33e3b8b-7653-4b7d-a17a-8da09866653a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b33e3b8b-7653-4b7d-a17a-8da09866653a@6c48a"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "010c3c6f-340c-42c8-b0ed-c77db59151d9",
"files": [],
"subMetas": {},
"userData": {}
}
Binary file not shown.
-12
View File
@@ -1,12 +0,0 @@
{
"ver": "1.0.0",
"importer": "*",
"imported": true,
"uuid": "4636a6c1-589d-49fd-a49a-5a9c5cffa22b",
"files": [
".json",
".xlsx"
],
"subMetas": {},
"userData": {}
}
Binary file not shown.
@@ -1,12 +0,0 @@
{
"ver": "1.0.0",
"importer": "*",
"imported": true,
"uuid": "f182779e-383c-478f-87bc-e66959517c10",
"files": [
".json",
".xlsx"
],
"subMetas": {},
"userData": {}
}
Binary file not shown.
@@ -1,12 +0,0 @@
{
"ver": "1.0.0",
"importer": "*",
"imported": true,
"uuid": "89413cb9-8101-42fe-96d4-52c600a2ddf4",
"files": [
".json",
".xlsx"
],
"subMetas": {},
"userData": {}
}
-9
View File
@@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "adee00a4-d095-48c3-b84d-97a0504a7b3e",
"files": [],
"subMetas": {},
"userData": {}
}
-9
View File
@@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "a4a8cb8c-a44e-4498-b500-8bde612e8d74",
"files": [],
"subMetas": {},
"userData": {}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Before

Width:  |  Height:  |  Size: 818 B

After

Width:  |  Height:  |  Size: 818 B

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Before

Width:  |  Height:  |  Size: 961 B

After

Width:  |  Height:  |  Size: 961 B

Before

Width:  |  Height:  |  Size: 630 B

After

Width:  |  Height:  |  Size: 630 B

Before

Width:  |  Height:  |  Size: 223 B

After

Width:  |  Height:  |  Size: 223 B

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Before

Width:  |  Height:  |  Size: 514 B

After

Width:  |  Height:  |  Size: 514 B

Before

Width:  |  Height:  |  Size: 882 B

After

Width:  |  Height:  |  Size: 882 B

Before

Width:  |  Height:  |  Size: 211 B

After

Width:  |  Height:  |  Size: 211 B

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