update 添加松鼠角色

This commit is contained in:
DESKTOP-5RP3AKU\Jisol 2023-10-30 02:34:11 +08:00
parent ca84f38096
commit bb4334c0ff
178 changed files with 6352 additions and 195 deletions

2
JNGame

@ -1 +1 @@
Subproject commit af76d11f08fdcbe87cece9fb0bf7d1d5b8737527
Subproject commit e5ae6946c8f1663d3025514e3ec9e3598debdcec

View File

@ -94,7 +94,7 @@
"z": 1
},
"_mobility": 0,
"_layer": 1073741824,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,

View File

@ -132,7 +132,7 @@
"__id__": 4
},
"_projection": 0,
"_priority": 0,
"_priority": 1,
"_fov": 45,
"_fovAxis": 0,
"_orthoHeight": 640,

View File

@ -156,7 +156,7 @@
"_shutter": 7,
"_iso": 0,
"_screenScale": 1,
"_visibility": 1107296257,
"_visibility": 1073741825,
"_targetTexture": {
"__uuid__": "a0d1e275-5512-493e-8e15-7d2db8beb48e",
"__expectedType__": "cc.RenderTexture"

View File

@ -1 +1 @@
{"10001":{"id":10001,"roleName":"小石头","spine":"spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a","roleSkillId":0,"roleAttackRange":100},"10002":{"id":10002,"roleName":"坚强小石","spine":"spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a","roleSkillId":0,"roleAttackRange":100},"10003":{"id":10003,"roleName":"疯狂松鼠","spine":"spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e","roleSkillId":0,"roleAttackRange":500}}
{"10001":{"id":10001,"roleName":"小石头","spine":"spine/召唤与合成819个Spine/小石头/guaiA1a/spine/guaiA1a","roleSkillIds":[],"roleAttackRange":100},"10002":{"id":10002,"roleName":"坚强小石","spine":"spine/召唤与合成819个Spine/坚强小石/guaiA1a_1/spine/guaiA1a","roleSkillIds":[],"roleAttackRange":100},"10003":{"id":10003,"roleName":"疯狂松鼠","spine":"spine/召唤与合成819个Spine/疯狂松鼠/guaiA4e_2/spine/guaiA4e","roleSkillIds":[40001],"roleAttackRange":500}}

View File

@ -1 +1 @@
{"10001":{"roleId":10001,"attackWay":"Normal","attackArgs":[]},"10002":{"roleId":10002,"attackWay":"Normal","attackArgs":[]},"10003":{"roleId":10003,"attackWay":"ParabolicRemote","attackArgs":["20001",0.6,"timo5 007"]}}
{"10001":{"roleId":10001,"attackWay":"Normal","attackArgs":[]},"10002":{"roleId":10002,"attackWay":"Normal","attackArgs":[]},"10003":{"roleId":10003,"attackWay":"ParabolicBangRemote","attackArgs":["20001","30001","timo5 007","0.6","100","100"]}}

View File

@ -0,0 +1 @@
{"30001":{"id":30001,"effectName":"爆炸","spine":"effect/爆炸效果/shouji_01/spine/shouji_01","animation":"animation"}}

View File

@ -0,0 +1,11 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "2b1b909f-c98c-40be-8840-601980d86769",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1 +1 @@
{}
{"40001":{"id":40001,"skillName":"疯狂松鼠","skillController":"GSkillCrazySquirrel","skillArgs":["10","250","250"],"skillText":"疯狂松鼠的技能 丢出巨大炸弹 轰炸全部玩家"}}

View File

@ -0,0 +1 @@
{"50001":{"id":50001,"text":"疯狂松鼠的技能开始 松鼠向天上丢出炸弹","spine":"spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/spine/guaiA4es"},"50002":{"id":50002,"text":"火球","spine":"effect/子弹效果/base_fly_fire/spine/buff_fire"},"50003":{"id":50003,"text":"火球爆炸","spine":"effect/爆炸效果/zhouyu_skill2_2/spine/zhouyu_skill2_2"}}

View File

@ -0,0 +1,11 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "fc22edae-4f33-449d-9525-61c07e4ad229",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1 @@
{"50001":{"id":50001,"text":"疯狂松鼠的技能开始 松鼠向天上丢出炸弹","spine":"spine/召唤与合成819个Spine/疯狂松鼠/guaiA4es_2/spine/guaiA4es"}}

View File

@ -0,0 +1,11 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "2b4d0d66-c8ee-4b18-996a-bdbd33d4f503",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -32,9 +32,9 @@ export class TableGRole {
get spine(): string {
return this.data.spine;
}
/** 角色技能Id */
get roleSkillId(): number {
return this.data.roleSkillId;
/** 角色技能Id列表 */
get roleSkillIds(): number[] {
return this.data.roleSkillIds;
}
/** 角色攻击范围 */
get roleAttackRange(): number {

View File

@ -0,0 +1,39 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleAttackEffect {
static TableName: string = "GRoleAttackEffect";
static getAllConfig(): { [id: string]: TableGRoleAttackEffect } {
return JsonUtil.get(TableGRoleAttackEffect.TableName);
}
static getConfig(id: number | string) {
return TableGRoleAttackEffect.getAllConfig()[id] as TableGRoleAttackEffect;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleAttackEffect.TableName);
this.data = table[id];
this._id = id;
}
/** Id */ private _id: number = 0;
/** Id */
get id(): number {
return this.data.id;
}
/** 效果名称 */
get effectName(): string {
return this.data.effectName;
}
/** spine路径 */
get spine(): string {
return this.data.spine;
}
/** 动画名称 */
get animation(): string {
return this.data.animation;
}
}

View File

@ -2,7 +2,7 @@
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "13b542e0-5fa9-4b1d-bfef-8196b3b3ffd6",
"uuid": "b03efae0-b212-4eb7-8462-2292e6884b51",
"files": [],
"subMetas": {},
"userData": {}

View File

@ -0,0 +1,43 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleSkill {
static TableName: string = "GRoleSkill";
static getAllConfig(): { [id: string]: TableGRoleSkill } {
return JsonUtil.get(TableGRoleSkill.TableName);
}
static getConfig(id: number | string) {
return TableGRoleSkill.getAllConfig()[id] as TableGRoleSkill;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleSkill.TableName);
this.data = table[id];
this._id = id;
}
/** 技能Id */ private _id: number = 0;
/** 技能Id */
get id(): number {
return this.data.id;
}
/** 技能名称 */
get skillName(): string {
return this.data.skillName;
}
/** 技能控制器 */
get skillController(): string {
return this.data.skillController;
}
/** 技能参数 */
get skillArgs(): string[] {
return this.data.skillArgs;
}
/** 技能介绍 */
get skillText(): string {
return this.data.skillText;
}
}

View File

@ -2,7 +2,7 @@
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "8c684f5a-84b5-4ea1-92d3-c0b70461970c",
"uuid": "44fbcae1-8514-43b3-8a90-3e68b3f84497",
"files": [],
"subMetas": {},
"userData": {}

View File

@ -0,0 +1,35 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleSkillEffect {
static TableName: string = "GRoleSkillEffect";
static getAllConfig(): { [id: string]: TableGRoleSkillEffect } {
return JsonUtil.get(TableGRoleSkillEffect.TableName);
}
static getConfig(id: number | string) {
return TableGRoleSkillEffect.getAllConfig()[id] as TableGRoleSkillEffect;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleSkillEffect.TableName);
this.data = table[id];
this._id = id;
}
/** 技能SpineId */ private _id: number = 0;
/** 技能SpineId */
get id(): number {
return this.data.id;
}
/** 说明 */
get text(): string {
return this.data.text;
}
/** spine路径 */
get spine(): string {
return this.data.spine;
}
}

View File

@ -2,7 +2,7 @@
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "04262003-45a4-4d9d-a1d3-83c11146c891",
"uuid": "2b4ecb72-b2fb-43c5-8712-3eb6b4c4abe9",
"files": [],
"subMetas": {},
"userData": {}

View File

@ -0,0 +1,35 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleSkillSpine {
static TableName: string = "GRoleSkillSpine";
static getAllConfig(): { [id: string]: TableGRoleSkillSpine } {
return JsonUtil.get(TableGRoleSkillSpine.TableName);
}
static getConfig(id: number | string) {
return TableGRoleSkillSpine.getAllConfig()[id] as TableGRoleSkillSpine;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleSkillSpine.TableName);
this.data = table[id];
this._id = id;
}
/** 技能SpineId */ private _id: number = 0;
/** 技能SpineId */
get id(): number {
return this.data.id;
}
/** 说明 */
get text(): string {
return this.data.text;
}
/** spine路径 */
get spine(): string {
return this.data.spine;
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "19c80511-21b9-4037-b717-48720ff61578",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -35,10 +35,13 @@
},
{
"__id__": 34
},
{
"__id__": 36
}
],
"_prefab": {
"__id__": 36
"__id__": 38
},
"_lpos": {
"__type__": "cc.Vec3",
@ -697,7 +700,7 @@
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.07770745417182541
"y": 0.077707
},
"_id": ""
},
@ -760,6 +763,9 @@
"__prefab": {
"__id__": 35
},
"spine": {
"__id__": 32
},
"bloodVolume": {
"__id__": 13
},
@ -772,6 +778,40 @@
"__type__": "cc.CompPrefabInfo",
"fileId": "89OuR1/75BxLrKGMeVKN5C"
},
{
"__type__": "cc.BoxCollider2D",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 37
},
"tag": 0,
"_group": 1,
"_density": 1,
"_sensor": false,
"_friction": 0.2,
"_restitution": 0,
"_offset": {
"__type__": "cc.Vec2",
"x": 0,
"y": 42.22925458281746
},
"_size": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "adZ/2FFS1AnqaNLGcoBV8b"
},
{
"__type__": "cc.PrefabInfo",
"root": {

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "7df9c6ee-61b8-4b44-9287-19a3e201db48",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "669c9d48-f559-4c73-8d93-286efe726fca",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "42b69bcb-145a-4ed5-928c-f1bb21518b69",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "a64f70c5-fd92-4f53-9cea-a726d3ccb680",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a64f70c5-fd92-4f53-9cea-a726d3ccb680@6c48a",
"displayName": "000",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a64f70c5-fd92-4f53-9cea-a726d3ccb680",
"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": "a64f70c5-fd92-4f53-9cea-a726d3ccb680@f9941",
"displayName": "000",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 223,
"height": 100,
"rawWidth": 223,
"rawHeight": 100,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-111.5,
-50,
0,
111.5,
-50,
0,
-111.5,
50,
0,
111.5,
50,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
100,
223,
100,
0,
0,
223,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-111.5,
-50,
0
],
"maxPos": [
111.5,
50,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a64f70c5-fd92-4f53-9cea-a726d3ccb680@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a64f70c5-fd92-4f53-9cea-a726d3ccb680@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "38004a8e-1e7e-481d-a276-ba12a9015c96",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "38004a8e-1e7e-481d-a276-ba12a9015c96@6c48a",
"displayName": "001",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "38004a8e-1e7e-481d-a276-ba12a9015c96",
"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": "38004a8e-1e7e-481d-a276-ba12a9015c96@f9941",
"displayName": "001",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 221,
"height": 92,
"rawWidth": 221,
"rawHeight": 92,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-110.5,
-46,
0,
110.5,
-46,
0,
-110.5,
46,
0,
110.5,
46,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
92,
221,
92,
0,
0,
221,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-110.5,
-46,
0
],
"maxPos": [
110.5,
46,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "38004a8e-1e7e-481d-a276-ba12a9015c96@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "38004a8e-1e7e-481d-a276-ba12a9015c96@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "c059355d-3503-4aa1-87c0-38b81b2050e2",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c059355d-3503-4aa1-87c0-38b81b2050e2@6c48a",
"displayName": "002",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c059355d-3503-4aa1-87c0-38b81b2050e2",
"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": "c059355d-3503-4aa1-87c0-38b81b2050e2@f9941",
"displayName": "002",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 222,
"height": 90,
"rawWidth": 222,
"rawHeight": 90,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-111,
-45,
0,
111,
-45,
0,
-111,
45,
0,
111,
45,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
90,
222,
90,
0,
0,
222,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-111,
-45,
0
],
"maxPos": [
111,
45,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c059355d-3503-4aa1-87c0-38b81b2050e2@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c059355d-3503-4aa1-87c0-38b81b2050e2@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "e8550400-59c1-4cde-a972-b6df5f696b09",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e8550400-59c1-4cde-a972-b6df5f696b09@6c48a",
"displayName": "003",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e8550400-59c1-4cde-a972-b6df5f696b09",
"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": "e8550400-59c1-4cde-a972-b6df5f696b09@f9941",
"displayName": "003",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 221,
"height": 90,
"rawWidth": 221,
"rawHeight": 90,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-110.5,
-45,
0,
110.5,
-45,
0,
-110.5,
45,
0,
110.5,
45,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
90,
221,
90,
0,
0,
221,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-110.5,
-45,
0
],
"maxPos": [
110.5,
45,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e8550400-59c1-4cde-a972-b6df5f696b09@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e8550400-59c1-4cde-a972-b6df5f696b09@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "07a6e3b4-0690-4be3-bd6a-ddb8655d0928",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "07a6e3b4-0690-4be3-bd6a-ddb8655d0928@6c48a",
"displayName": "004",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "07a6e3b4-0690-4be3-bd6a-ddb8655d0928",
"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": "07a6e3b4-0690-4be3-bd6a-ddb8655d0928@f9941",
"displayName": "004",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 224,
"height": 88,
"rawWidth": 224,
"rawHeight": 88,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-112,
-44,
0,
112,
-44,
0,
-112,
44,
0,
112,
44,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
88,
224,
88,
0,
0,
224,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-112,
-44,
0
],
"maxPos": [
112,
44,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "07a6e3b4-0690-4be3-bd6a-ddb8655d0928@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "07a6e3b4-0690-4be3-bd6a-ddb8655d0928@f9941"
}
}

View File

@ -0,0 +1,12 @@
{
"ver": "1.0.1",
"importer": "*",
"imported": true,
"uuid": "32299834-d060-4b93-b428-e1fe3b8346e8",
"files": [
".json",
".spine"
],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "8138a13b-653b-46c8-9f2b-90a275ffcb2b",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,41 @@
buff_fire.png
size: 378,322
format: RGBA8888
filter: Linear,Linear
repeat: none
000
rotate: true
xy: 92, 97
size: 223, 100
orig: 223, 100
offset: 0, 0
index: -1
001
rotate: false
xy: 2, 2
size: 221, 92
orig: 221, 92
offset: 0, 0
index: -1
002
rotate: true
xy: 194, 98
size: 222, 90
orig: 222, 90
offset: 0, 0
index: -1
003
rotate: true
xy: 286, 99
size: 221, 90
orig: 221, 90
offset: 0, 0
index: -1
004
rotate: true
xy: 2, 96
size: 224, 88
orig: 224, 88
offset: 0, 0
index: -1

View File

@ -0,0 +1,12 @@
{
"ver": "1.0.1",
"importer": "*",
"imported": true,
"uuid": "5248ee3e-c600-4b2b-b5d7-ccff7c9830c2",
"files": [
".atlas",
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1 @@
{"skeleton":{"hash":"hFehSAI/6kuPO5wPqsX7P2xDPyY","spine":"2.1.27","width":221,"height":90,"images":""},"bones":[{"name":"root"},{"name":"bone","parent":"root","length":89.99,"rotation":180}],"slots":[{"name":"000","bone":"bone","attachment":"003"}],"skins":{"default":{"000":{"000":{"x":-1.81,"y":6.51,"rotation":-180,"width":223,"height":100},"001":{"x":-1.29,"y":0.87,"rotation":-180,"width":221,"height":92},"002":{"x":-1.4,"y":0.22,"rotation":-180,"width":222,"height":90},"003":{"x":-0.99,"y":0.53,"rotation":-180,"width":221,"height":90},"004":{"x":-2.72,"y":0.84,"rotation":-180,"width":224,"height":88}}}},"animations":{"animation":{"slots":{"000":{"attachment":[{"time":0,"name":"000"},{"time":0.0666,"name":"001"},{"time":0.1333,"name":"002"},{"time":0.2,"name":"003"},{"time":0.2666,"name":"004"}]}},"bones":{"bone":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.2666,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.2666,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.2666,"x":1,"y":1}]}}}}}

View File

@ -0,0 +1,11 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "9ba1ed01-edb4-4f3e-988c-f6111de69597",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "259f92ef-99c5-4e2b-bf7f-3cfd159a32e2",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "259f92ef-99c5-4e2b-bf7f-3cfd159a32e2@6c48a",
"displayName": "buff_fire",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "259f92ef-99c5-4e2b-bf7f-3cfd159a32e2",
"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": "259f92ef-99c5-4e2b-bf7f-3cfd159a32e2@f9941",
"displayName": "buff_fire",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 2,
"trimY": 2,
"width": 374,
"height": 318,
"rawWidth": 378,
"rawHeight": 322,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-187,
-159,
0,
187,
-159,
0,
-187,
159,
0,
187,
159,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
320,
376,
320,
2,
2,
376,
2
],
"nuv": [
0.005291005291005291,
0.006211180124223602,
0.9947089947089947,
0.006211180124223602,
0.005291005291005291,
0.9937888198757764,
0.9947089947089947,
0.9937888198757764
],
"minPos": [
-187,
-159,
0
],
"maxPos": [
187,
159,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "259f92ef-99c5-4e2b-bf7f-3cfd159a32e2@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "259f92ef-99c5-4e2b-bf7f-3cfd159a32e2@f9941"
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "718da7b5-c515-4b89-8031-09a353a453fa",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "1c85927a-37d2-481b-8485-85a05581d690",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "dce246d4-116d-4f36-893b-43a64365169d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "dce246d4-116d-4f36-893b-43a64365169d@6c48a",
"displayName": "baozha0001",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "dce246d4-116d-4f36-893b-43a64365169d",
"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": "dce246d4-116d-4f36-893b-43a64365169d@f9941",
"displayName": "baozha0001",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 11.5,
"offsetY": 0,
"trimX": 53,
"trimY": 18,
"width": 117,
"height": 149,
"rawWidth": 200,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-58.5,
-74.5,
0,
58.5,
-74.5,
0,
-58.5,
74.5,
0,
58.5,
74.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
53,
167,
170,
167,
53,
18,
170,
18
],
"nuv": [
0.265,
0.0972972972972973,
0.85,
0.0972972972972973,
0.265,
0.9027027027027027,
0.85,
0.9027027027027027
],
"minPos": [
-58.5,
-74.5,
0
],
"maxPos": [
58.5,
74.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "dce246d4-116d-4f36-893b-43a64365169d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "dce246d4-116d-4f36-893b-43a64365169d@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "bec67e6e-8cac-46c2-85d5-6d51c69e5573",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bec67e6e-8cac-46c2-85d5-6d51c69e5573@6c48a",
"displayName": "baozha0002",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bec67e6e-8cac-46c2-85d5-6d51c69e5573",
"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": "bec67e6e-8cac-46c2-85d5-6d51c69e5573@f9941",
"displayName": "baozha0002",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 13,
"trimY": 9,
"width": 174,
"height": 166,
"rawWidth": 200,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-87,
-83,
0,
87,
-83,
0,
-87,
83,
0,
87,
83,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
13,
176,
187,
176,
13,
10,
187,
10
],
"nuv": [
0.065,
0.05405405405405406,
0.935,
0.05405405405405406,
0.065,
0.9513513513513514,
0.935,
0.9513513513513514
],
"minPos": [
-87,
-83,
0
],
"maxPos": [
87,
83,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "bec67e6e-8cac-46c2-85d5-6d51c69e5573@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bec67e6e-8cac-46c2-85d5-6d51c69e5573@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "026823e5-14f5-4f70-a73e-88a3f8e8001e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "026823e5-14f5-4f70-a73e-88a3f8e8001e@6c48a",
"displayName": "baozha0003",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "026823e5-14f5-4f70-a73e-88a3f8e8001e",
"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": "026823e5-14f5-4f70-a73e-88a3f8e8001e@f9941",
"displayName": "baozha0003",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -1,
"trimX": 13,
"trimY": 12,
"width": 176,
"height": 163,
"rawWidth": 200,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-88,
-81.5,
0,
88,
-81.5,
0,
-88,
81.5,
0,
88,
81.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
13,
173,
189,
173,
13,
10,
189,
10
],
"nuv": [
0.065,
0.05405405405405406,
0.945,
0.05405405405405406,
0.065,
0.9351351351351351,
0.945,
0.9351351351351351
],
"minPos": [
-88,
-81.5,
0
],
"maxPos": [
88,
81.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "026823e5-14f5-4f70-a73e-88a3f8e8001e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "026823e5-14f5-4f70-a73e-88a3f8e8001e@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "5828e8e7-d037-46d8-a9af-63a11ae7349e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5828e8e7-d037-46d8-a9af-63a11ae7349e@6c48a",
"displayName": "baozha0004",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5828e8e7-d037-46d8-a9af-63a11ae7349e",
"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": "5828e8e7-d037-46d8-a9af-63a11ae7349e@f9941",
"displayName": "baozha0004",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -0.5,
"trimX": 14,
"trimY": 14,
"width": 174,
"height": 158,
"rawWidth": 200,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-87,
-79,
0,
87,
-79,
0,
-87,
79,
0,
87,
79,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
14,
171,
188,
171,
14,
13,
188,
13
],
"nuv": [
0.07,
0.07027027027027027,
0.94,
0.07027027027027027,
0.07,
0.9243243243243243,
0.94,
0.9243243243243243
],
"minPos": [
-87,
-79,
0
],
"maxPos": [
87,
79,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5828e8e7-d037-46d8-a9af-63a11ae7349e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5828e8e7-d037-46d8-a9af-63a11ae7349e@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "d330c1ef-5e51-4335-980b-d535892c4a18",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d330c1ef-5e51-4335-980b-d535892c4a18@6c48a",
"displayName": "baozha0005",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d330c1ef-5e51-4335-980b-d535892c4a18",
"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": "d330c1ef-5e51-4335-980b-d535892c4a18@f9941",
"displayName": "baozha0005",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 8,
"offsetY": 0,
"trimX": 32,
"trimY": 16,
"width": 152,
"height": 153,
"rawWidth": 200,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-76,
-76.5,
0,
76,
-76.5,
0,
-76,
76.5,
0,
76,
76.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
32,
169,
184,
169,
32,
16,
184,
16
],
"nuv": [
0.16,
0.08648648648648649,
0.92,
0.08648648648648649,
0.16,
0.9135135135135135,
0.92,
0.9135135135135135
],
"minPos": [
-76,
-76.5,
0
],
"maxPos": [
76,
76.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d330c1ef-5e51-4335-980b-d535892c4a18@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d330c1ef-5e51-4335-980b-d535892c4a18@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "aa74ba45-1456-4980-abe3-8ed0e52767a0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "aa74ba45-1456-4980-abe3-8ed0e52767a0@6c48a",
"displayName": "baozha0006",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "aa74ba45-1456-4980-abe3-8ed0e52767a0",
"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": "aa74ba45-1456-4980-abe3-8ed0e52767a0@f9941",
"displayName": "baozha0006",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 3.5,
"offsetY": 4,
"trimX": 26,
"trimY": 16,
"width": 155,
"height": 145,
"rawWidth": 200,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-77.5,
-72.5,
0,
77.5,
-72.5,
0,
-77.5,
72.5,
0,
77.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
26,
169,
181,
169,
26,
24,
181,
24
],
"nuv": [
0.13,
0.12972972972972974,
0.905,
0.12972972972972974,
0.13,
0.9135135135135135,
0.905,
0.9135135135135135
],
"minPos": [
-77.5,
-72.5,
0
],
"maxPos": [
77.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "aa74ba45-1456-4980-abe3-8ed0e52767a0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "aa74ba45-1456-4980-abe3-8ed0e52767a0@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "fbadc552-d5aa-42fc-a9da-f4c9398d3ea8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "fbadc552-d5aa-42fc-a9da-f4c9398d3ea8@6c48a",
"displayName": "guangdian",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "fbadc552-d5aa-42fc-a9da-f4c9398d3ea8",
"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": "fbadc552-d5aa-42fc-a9da-f4c9398d3ea8@f9941",
"displayName": "guangdian",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -1,
"trimX": 2,
"trimY": 4,
"width": 105,
"height": 84,
"rawWidth": 110,
"rawHeight": 90,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-52.5,
-42,
0,
52.5,
-42,
0,
-52.5,
42,
0,
52.5,
42,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
86,
107,
86,
2,
2,
107,
2
],
"nuv": [
0.01818181818181818,
0.022222222222222223,
0.9727272727272728,
0.022222222222222223,
0.01818181818181818,
0.9555555555555556,
0.9727272727272728,
0.9555555555555556
],
"minPos": [
-52.5,
-42,
0
],
"maxPos": [
52.5,
42,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "fbadc552-d5aa-42fc-a9da-f4c9398d3ea8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "fbadc552-d5aa-42fc-a9da-f4c9398d3ea8@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "bde0c35f-afdc-4df8-b186-aa8f93942b48",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bde0c35f-afdc-4df8-b186-aa8f93942b48@6c48a",
"displayName": "guangqiu",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bde0c35f-afdc-4df8-b186-aa8f93942b48",
"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": "bde0c35f-afdc-4df8-b186-aa8f93942b48@f9941",
"displayName": "guangqiu",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 1,
"trimY": 1,
"width": 118,
"height": 118,
"rawWidth": 120,
"rawHeight": 120,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-59,
-59,
0,
59,
-59,
0,
-59,
59,
0,
59,
59,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
119,
119,
119,
1,
1,
119,
1
],
"nuv": [
0.008333333333333333,
0.008333333333333333,
0.9916666666666667,
0.008333333333333333,
0.008333333333333333,
0.9916666666666667,
0.9916666666666667,
0.9916666666666667
],
"minPos": [
-59,
-59,
0
],
"maxPos": [
59,
59,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "bde0c35f-afdc-4df8-b186-aa8f93942b48@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bde0c35f-afdc-4df8-b186-aa8f93942b48@f9941"
}
}

View File

@ -0,0 +1,12 @@
{
"ver": "1.0.1",
"importer": "*",
"imported": true,
"uuid": "2e9aa2a1-2ec8-49bb-bf44-7aad4c27704e",
"files": [
".json",
".spine"
],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "de9aa415-7053-4afb-b4dc-52d24a1de6e2",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,62 @@
shouji_01.png
size: 610,317
format: RGBA8888
filter: Linear,Linear
repeat: none
baozha0001
rotate: true
xy: 2, 22
size: 117, 149
orig: 200, 185
offset: 53, 18
index: -1
baozha0002
rotate: true
xy: 2, 141
size: 174, 166
orig: 200, 185
offset: 13, 10
index: -1
baozha0003
rotate: false
xy: 170, 152
size: 176, 163
orig: 200, 185
offset: 13, 10
index: -1
baozha0004
rotate: false
xy: 348, 157
size: 174, 158
orig: 200, 185
offset: 14, 13
index: -1
baozha0005
rotate: false
xy: 430, 2
size: 152, 153
orig: 200, 185
offset: 32, 16
index: -1
baozha0006
rotate: false
xy: 273, 5
size: 155, 145
orig: 200, 185
offset: 26, 24
index: -1
guangdian
rotate: true
xy: 524, 210
size: 105, 84
orig: 110, 90
offset: 2, 2
index: -1
guangqiu
rotate: false
xy: 153, 21
size: 118, 118
orig: 120, 120
offset: 1, 1
index: -1

View File

@ -0,0 +1,12 @@
{
"ver": "1.0.1",
"importer": "*",
"imported": true,
"uuid": "34ac9fdc-64c2-448b-963c-d75aab270352",
"files": [
".atlas",
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1 @@
{"skeleton":{"hash":"sB2/tVfLVBKf/qsHvJ8Knv3b1nI","spine":"2.1.27","width":260,"height":240.49,"images":""},"bones":[{"name":"root"},{"name":"bone","parent":"root"},{"name":"bone2","parent":"bone"},{"name":"bone3","parent":"bone"},{"name":"bone4","parent":"bone","x":-12.84,"y":8.56,"scaleX":1.3,"scaleY":1.3}],"slots":[{"name":"baozha","bone":"bone4","attachment":"baozha0006"},{"name":"guangqiu","bone":"bone3","attachment":"guangqiu"},{"name":"guangdian","bone":"bone2","attachment":"guangdian"}],"skins":{"default":{"baozha":{"baozha0001":{"width":200,"height":185},"baozha0002":{"width":200,"height":185},"baozha0003":{"width":200,"height":185},"baozha0004":{"width":200,"height":185},"baozha0005":{"width":200,"height":185},"baozha0006":{"width":200,"height":185}},"guangdian":{"guangdian":{"width":110,"height":90}},"guangqiu":{"guangqiu":{"width":120,"height":120}}}},"events":{"event_hit":{}},"animations":{"animation":{"slots":{"baozha":{"attachment":[{"time":0,"name":"baozha0001"},{"time":0.0666,"name":"baozha0002"},{"time":0.1333,"name":"baozha0003"},{"time":0.2,"name":"baozha0004"},{"time":0.2666,"name":"baozha0005"},{"time":0.3333,"name":"baozha0006"},{"time":0.4,"name":null}]},"guangdian":{"attachment":[{"time":0,"name":"guangdian"}],"color":[{"time":0,"color":"ffffffff"},{"time":0.1666,"color":"ffffffb4"},{"time":0.3333,"color":"ffffff00"}]},"guangqiu":{"attachment":[{"time":0,"name":"guangqiu"}],"color":[{"time":0,"color":"ffffffc7"},{"time":0.2666,"color":"ffffffb4"},{"time":0.5,"color":"ffffff00"}]}},"bones":{"bone4":{"scale":[{"time":0,"x":1.076,"y":1.076}]},"bone3":{"scale":[{"time":0,"x":1.3,"y":1.3},{"time":0.5,"x":2.5,"y":2.5}]},"bone2":{"scale":[{"time":0,"x":1,"y":1},{"time":0.3333,"x":2,"y":2}]}}}}}

View File

@ -0,0 +1,11 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "6bea3dd7-ad6a-4cd3-a04e-99376e7dd9a2",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

View File

@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "22c36f69-c892-4a5a-a3bb-1d5fb4bd5b68",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "22c36f69-c892-4a5a-a3bb-1d5fb4bd5b68@6c48a",
"displayName": "shouji_01",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "22c36f69-c892-4a5a-a3bb-1d5fb4bd5b68",
"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": "22c36f69-c892-4a5a-a3bb-1d5fb4bd5b68@f9941",
"displayName": "shouji_01",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 2,
"trimY": 2,
"width": 606,
"height": 313,
"rawWidth": 610,
"rawHeight": 317,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-303,
-156.5,
0,
303,
-156.5,
0,
-303,
156.5,
0,
303,
156.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
315,
608,
315,
2,
2,
608,
2
],
"nuv": [
0.003278688524590164,
0.006309148264984227,
0.9967213114754099,
0.006309148264984227,
0.003278688524590164,
0.9936908517350158,
0.9967213114754099,
0.9936908517350158
],
"minPos": [
-303,
-156.5,
0
],
"maxPos": [
303,
156.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "22c36f69-c892-4a5a-a3bb-1d5fb4bd5b68@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": true,
"redirect": "22c36f69-c892-4a5a-a3bb-1d5fb4bd5b68@f9941",
"flipGreenChannel": false
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "a8a28fd1-ed19-4065-8f6f-b9f3fa1e14d7",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "a35b5e8d-0979-4bcf-8390-2d5c3ff85226",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "9ba0cb57-c7d4-43b9-9a45-c90fd071e578",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9ba0cb57-c7d4-43b9-9a45-c90fd071e578@6c48a",
"displayName": "4845-baozha2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9ba0cb57-c7d4-43b9-9a45-c90fd071e578",
"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": "9ba0cb57-c7d4-43b9-9a45-c90fd071e578@f9941",
"displayName": "4845-baozha2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 200,
"height": 200,
"rawWidth": 200,
"rawHeight": 200,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-100,
-100,
0,
100,
-100,
0,
-100,
100,
0,
100,
100,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
200,
200,
200,
0,
0,
200,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-100,
-100,
0
],
"maxPos": [
100,
100,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9ba0cb57-c7d4-43b9-9a45-c90fd071e578@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9ba0cb57-c7d4-43b9-9a45-c90fd071e578@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "4ff7df06-ccdc-4497-8332-fbf9b6abfc18",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4ff7df06-ccdc-4497-8332-fbf9b6abfc18@6c48a",
"displayName": "TX_hybz_0058",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4ff7df06-ccdc-4497-8332-fbf9b6abfc18",
"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": "4ff7df06-ccdc-4497-8332-fbf9b6abfc18@f9941",
"displayName": "TX_hybz_0058",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": -7,
"trimX": 13,
"trimY": 19,
"width": 172,
"height": 174,
"rawWidth": 195,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-86,
-87,
0,
86,
-87,
0,
-86,
87,
0,
86,
87,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
13,
179,
185,
179,
13,
5,
185,
5
],
"nuv": [
0.06666666666666667,
0.025252525252525252,
0.9487179487179487,
0.025252525252525252,
0.06666666666666667,
0.9040404040404041,
0.9487179487179487,
0.9040404040404041
],
"minPos": [
-86,
-87,
0
],
"maxPos": [
86,
87,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4ff7df06-ccdc-4497-8332-fbf9b6abfc18@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4ff7df06-ccdc-4497-8332-fbf9b6abfc18@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "1168b518-61b0-4ca8-ba16-5085b3722064",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1168b518-61b0-4ca8-ba16-5085b3722064@6c48a",
"displayName": "TX_hybz_0060",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1168b518-61b0-4ca8-ba16-5085b3722064",
"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": "1168b518-61b0-4ca8-ba16-5085b3722064@f9941",
"displayName": "TX_hybz_0060",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -4,
"trimX": 6,
"trimY": 8,
"width": 184,
"height": 190,
"rawWidth": 195,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-92,
-95,
0,
92,
-95,
0,
-92,
95,
0,
92,
95,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
6,
190,
190,
190,
6,
0,
190,
0
],
"nuv": [
0.03076923076923077,
0,
0.9743589743589743,
0,
0.03076923076923077,
0.9595959595959596,
0.9743589743589743,
0.9595959595959596
],
"minPos": [
-92,
-95,
0
],
"maxPos": [
92,
95,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1168b518-61b0-4ca8-ba16-5085b3722064@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1168b518-61b0-4ca8-ba16-5085b3722064@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "1014d8fe-eb7e-4351-9454-70ff7a4e4fbc",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1014d8fe-eb7e-4351-9454-70ff7a4e4fbc@6c48a",
"displayName": "TX_hybz_0062",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1014d8fe-eb7e-4351-9454-70ff7a4e4fbc",
"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": "1014d8fe-eb7e-4351-9454-70ff7a4e4fbc@f9941",
"displayName": "TX_hybz_0062",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -2,
"trimX": 4,
"trimY": 4,
"width": 185,
"height": 194,
"rawWidth": 195,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-92.5,
-97,
0,
92.5,
-97,
0,
-92.5,
97,
0,
92.5,
97,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
4,
194,
189,
194,
4,
0,
189,
0
],
"nuv": [
0.020512820512820513,
0,
0.9692307692307692,
0,
0.020512820512820513,
0.9797979797979798,
0.9692307692307692,
0.9797979797979798
],
"minPos": [
-92.5,
-97,
0
],
"maxPos": [
92.5,
97,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1014d8fe-eb7e-4351-9454-70ff7a4e4fbc@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1014d8fe-eb7e-4351-9454-70ff7a4e4fbc@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "5f7d151d-78bc-4738-b3eb-325440ea5f24",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5f7d151d-78bc-4738-b3eb-325440ea5f24@6c48a",
"displayName": "TX_hybz_0064",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5f7d151d-78bc-4738-b3eb-325440ea5f24",
"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": "5f7d151d-78bc-4738-b3eb-325440ea5f24@f9941",
"displayName": "TX_hybz_0064",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 1,
"trimX": 1,
"trimY": 0,
"width": 192,
"height": 196,
"rawWidth": 195,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-96,
-98,
0,
96,
-98,
0,
-96,
98,
0,
96,
98,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
198,
193,
198,
1,
2,
193,
2
],
"nuv": [
0.005128205128205128,
0.010101010101010102,
0.9897435897435898,
0.010101010101010102,
0.005128205128205128,
1,
0.9897435897435898,
1
],
"minPos": [
-96,
-98,
0
],
"maxPos": [
96,
98,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5f7d151d-78bc-4738-b3eb-325440ea5f24@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5f7d151d-78bc-4738-b3eb-325440ea5f24@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "3e89062e-b618-4ae5-915b-d897340f2f40",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3e89062e-b618-4ae5-915b-d897340f2f40@6c48a",
"displayName": "TX_hybz_0068",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3e89062e-b618-4ae5-915b-d897340f2f40",
"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": "3e89062e-b618-4ae5-915b-d897340f2f40@f9941",
"displayName": "TX_hybz_0068",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 15,
"trimX": 1,
"trimY": 0,
"width": 194,
"height": 168,
"rawWidth": 195,
"rawHeight": 198,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-97,
-84,
0,
97,
-84,
0,
-97,
84,
0,
97,
84,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
198,
195,
198,
1,
30,
195,
30
],
"nuv": [
0.005128205128205128,
0.15151515151515152,
1,
0.15151515151515152,
0.005128205128205128,
1,
1,
1
],
"minPos": [
-97,
-84,
0
],
"maxPos": [
97,
84,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3e89062e-b618-4ae5-915b-d897340f2f40@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3e89062e-b618-4ae5-915b-d897340f2f40@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "656a4136-154e-4a01-84ed-418fd085386a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "656a4136-154e-4a01-84ed-418fd085386a@6c48a",
"displayName": "TX_xsx_00000",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "656a4136-154e-4a01-84ed-418fd085386a",
"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": "656a4136-154e-4a01-84ed-418fd085386a@f9941",
"displayName": "TX_xsx_00000",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 17,
"trimY": 6,
"width": 215,
"height": 75,
"rawWidth": 248,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-107.5,
-37.5,
0,
107.5,
-37.5,
0,
-107.5,
37.5,
0,
107.5,
37.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
17,
81,
232,
81,
17,
6,
232,
6
],
"nuv": [
0.06854838709677419,
0.06896551724137931,
0.9354838709677419,
0.06896551724137931,
0.06854838709677419,
0.9310344827586207,
0.9354838709677419,
0.9310344827586207
],
"minPos": [
-107.5,
-37.5,
0
],
"maxPos": [
107.5,
37.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "656a4136-154e-4a01-84ed-418fd085386a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "656a4136-154e-4a01-84ed-418fd085386a@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "8251d88e-0943-4c69-89cb-88116bb83e9f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8251d88e-0943-4c69-89cb-88116bb83e9f@6c48a",
"displayName": "TX_xsx_00002",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8251d88e-0943-4c69-89cb-88116bb83e9f",
"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": "8251d88e-0943-4c69-89cb-88116bb83e9f@f9941",
"displayName": "TX_xsx_00002",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0.5,
"trimX": 11,
"trimY": 4,
"width": 225,
"height": 78,
"rawWidth": 248,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-112.5,
-39,
0,
112.5,
-39,
0,
-112.5,
39,
0,
112.5,
39,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
11,
83,
236,
83,
11,
5,
236,
5
],
"nuv": [
0.04435483870967742,
0.05747126436781609,
0.9516129032258065,
0.05747126436781609,
0.04435483870967742,
0.9540229885057471,
0.9516129032258065,
0.9540229885057471
],
"minPos": [
-112.5,
-39,
0
],
"maxPos": [
112.5,
39,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8251d88e-0943-4c69-89cb-88116bb83e9f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8251d88e-0943-4c69-89cb-88116bb83e9f@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "d3a8da1f-daa5-4e52-929a-edf95edb8275",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d3a8da1f-daa5-4e52-929a-edf95edb8275@6c48a",
"displayName": "TX_xsx_00004",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d3a8da1f-daa5-4e52-929a-edf95edb8275",
"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": "d3a8da1f-daa5-4e52-929a-edf95edb8275@f9941",
"displayName": "TX_xsx_00004",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": 0,
"trimX": 6,
"trimY": 3,
"width": 234,
"height": 81,
"rawWidth": 248,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-117,
-40.5,
0,
117,
-40.5,
0,
-117,
40.5,
0,
117,
40.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
6,
84,
240,
84,
6,
3,
240,
3
],
"nuv": [
0.024193548387096774,
0.034482758620689655,
0.967741935483871,
0.034482758620689655,
0.024193548387096774,
0.9655172413793104,
0.967741935483871,
0.9655172413793104
],
"minPos": [
-117,
-40.5,
0
],
"maxPos": [
117,
40.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d3a8da1f-daa5-4e52-929a-edf95edb8275@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d3a8da1f-daa5-4e52-929a-edf95edb8275@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "b5d7be0c-1350-4548-ac0d-275d2d81d39e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b5d7be0c-1350-4548-ac0d-275d2d81d39e@6c48a",
"displayName": "TX_xsx_00006",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b5d7be0c-1350-4548-ac0d-275d2d81d39e",
"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": "b5d7be0c-1350-4548-ac0d-275d2d81d39e@f9941",
"displayName": "TX_xsx_00006",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -1.5,
"trimX": 4,
"trimY": 3,
"width": 239,
"height": 84,
"rawWidth": 248,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-119.5,
-42,
0,
119.5,
-42,
0,
-119.5,
42,
0,
119.5,
42,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
4,
84,
243,
84,
4,
0,
243,
0
],
"nuv": [
0.016129032258064516,
0,
0.9798387096774194,
0,
0.016129032258064516,
0.9655172413793104,
0.9798387096774194,
0.9655172413793104
],
"minPos": [
-119.5,
-42,
0
],
"maxPos": [
119.5,
42,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b5d7be0c-1350-4548-ac0d-275d2d81d39e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b5d7be0c-1350-4548-ac0d-275d2d81d39e@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "39e91df6-ddb4-436c-b709-7d0e1a281271",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "39e91df6-ddb4-436c-b709-7d0e1a281271@6c48a",
"displayName": "baoguang",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "39e91df6-ddb4-436c-b709-7d0e1a281271",
"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": "39e91df6-ddb4-436c-b709-7d0e1a281271@f9941",
"displayName": "baoguang",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": 4.5,
"trimX": 12,
"trimY": 0,
"width": 129,
"height": 141,
"rawWidth": 150,
"rawHeight": 150,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-64.5,
-70.5,
0,
64.5,
-70.5,
0,
-64.5,
70.5,
0,
64.5,
70.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
12,
150,
141,
150,
12,
9,
141,
9
],
"nuv": [
0.08,
0.06,
0.94,
0.06,
0.08,
1,
0.94,
1
],
"minPos": [
-64.5,
-70.5,
0
],
"maxPos": [
64.5,
70.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "39e91df6-ddb4-436c-b709-7d0e1a281271@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "39e91df6-ddb4-436c-b709-7d0e1a281271@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "b77dd676-c35c-4b6d-9caa-27aeda3f3cfc",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b77dd676-c35c-4b6d-9caa-27aeda3f3cfc@6c48a",
"displayName": "gq2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b77dd676-c35c-4b6d-9caa-27aeda3f3cfc",
"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": "b77dd676-c35c-4b6d-9caa-27aeda3f3cfc@f9941",
"displayName": "gq2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 4,
"width": 156,
"height": 152,
"rawWidth": 156,
"rawHeight": 156,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-78,
-76,
0,
78,
-76,
0,
-78,
76,
0,
78,
76,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
152,
156,
152,
0,
0,
156,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.9743589743589743,
1,
0.9743589743589743
],
"minPos": [
-78,
-76,
0
],
"maxPos": [
78,
76,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b77dd676-c35c-4b6d-9caa-27aeda3f3cfc@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b77dd676-c35c-4b6d-9caa-27aeda3f3cfc@f9941"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -0,0 +1,134 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "f2f6ace7-cda7-4312-8403-42c8767ac2f5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f2f6ace7-cda7-4312-8403-42c8767ac2f5@6c48a",
"displayName": "tx_baodian02",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f2f6ace7-cda7-4312-8403-42c8767ac2f5",
"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": "f2f6ace7-cda7-4312-8403-42c8767ac2f5@f9941",
"displayName": "tx_baodian02",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -12,
"trimX": 1,
"trimY": 25,
"width": 45,
"height": 74,
"rawWidth": 50,
"rawHeight": 100,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22.5,
-37,
0,
22.5,
-37,
0,
-22.5,
37,
0,
22.5,
37,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
75,
46,
75,
1,
1,
46,
1
],
"nuv": [
0.02,
0.01,
0.92,
0.01,
0.02,
0.75,
0.92,
0.75
],
"minPos": [
-22.5,
-37,
0
],
"maxPos": [
22.5,
37,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f2f6ace7-cda7-4312-8403-42c8767ac2f5@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f2f6ace7-cda7-4312-8403-42c8767ac2f5@f9941"
}
}

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