添加角色 远程攻击逻辑
@ -1 +1 @@
|
|||||||
{"10001":{"id":10001,"roleName":"小石头","spine":"spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a"},"10002":{"id":10002,"roleName":"坚强小石","spine":"spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a"}}
|
{"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}}
|
@ -0,0 +1 @@
|
|||||||
|
{"10001":{"roleId":10001,"attackWay":"Normal","attackArgs":[]},"10002":{"roleId":10002,"attackWay":"Normal","attackArgs":[]},"10003":{"roleId":10003,"attackWay":"Remote","attackArgs":["20001"]}}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.1",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "75a65c75-47c9-4167-ba79-55548af8cc79",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
{"20001":{"id":20001,"bulletName":"炸弹","bulletSrc":"bullets/疯狂松鼠/attack/spriteFrame"}}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.1",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "9e1a69f7-e3db-4165-abc2-aa96ed577b2d",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
{}
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.1",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "59d1c66b-278d-4af3-8bb9-864840cfbc5f",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -32,4 +32,12 @@ export class TableGRole {
|
|||||||
get spine(): string {
|
get spine(): string {
|
||||||
return this.data.spine;
|
return this.data.spine;
|
||||||
}
|
}
|
||||||
|
/** 角色技能Id */
|
||||||
|
get roleSkillId(): number {
|
||||||
|
return this.data.roleSkillId;
|
||||||
|
}
|
||||||
|
/** 角色攻击范围 */
|
||||||
|
get roleAttackRange(): number {
|
||||||
|
return this.data.roleAttackRange;
|
||||||
|
}
|
||||||
}
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
|
||||||
|
|
||||||
|
export class TableGRoleAttack {
|
||||||
|
static TableName: string = "GRoleAttack";
|
||||||
|
|
||||||
|
static getAllConfig(): { [id: string]: TableGRoleAttack } {
|
||||||
|
return JsonUtil.get(TableGRoleAttack.TableName);
|
||||||
|
}
|
||||||
|
|
||||||
|
static getConfig(id: number | string) {
|
||||||
|
return TableGRoleAttack.getAllConfig()[id] as TableGRoleAttack;
|
||||||
|
}
|
||||||
|
|
||||||
|
private data: any;
|
||||||
|
|
||||||
|
init(roleId: number) {
|
||||||
|
var table = JsonUtil.get(TableGRoleAttack.TableName);
|
||||||
|
this.data = table[roleId];
|
||||||
|
this._roleId = roleId;
|
||||||
|
}
|
||||||
|
/** 角色Id */
private _roleId: number = 0;
|
||||||
|
|
||||||
|
/** 角色Id */
|
||||||
|
get roleId(): number {
|
||||||
|
return this.data.roleId;
|
||||||
|
}
|
||||||
|
/** 攻击方式 */
|
||||||
|
get attackWay(): string {
|
||||||
|
return this.data.attackWay;
|
||||||
|
}
|
||||||
|
/** 攻击参数 */
|
||||||
|
get attackArgs(): string[] {
|
||||||
|
return this.data.attackArgs;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "4879e3d4-3b08-4e70-af99-add884d50af3",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
|
||||||
|
|
||||||
|
export class TableGRoleAttackBullet {
|
||||||
|
static TableName: string = "GRoleAttackBullet";
|
||||||
|
|
||||||
|
static getAllConfig(): { [id: string]: TableGRoleAttackBullet } {
|
||||||
|
return JsonUtil.get(TableGRoleAttackBullet.TableName);
|
||||||
|
}
|
||||||
|
|
||||||
|
static getConfig(id: number | string) {
|
||||||
|
return TableGRoleAttackBullet.getAllConfig()[id] as TableGRoleAttackBullet;
|
||||||
|
}
|
||||||
|
|
||||||
|
private data: any;
|
||||||
|
|
||||||
|
init(id: number) {
|
||||||
|
var table = JsonUtil.get(TableGRoleAttackBullet.TableName);
|
||||||
|
this.data = table[id];
|
||||||
|
this._id = id;
|
||||||
|
}
|
||||||
|
/** Id */
private _id: number = 0;
|
||||||
|
|
||||||
|
/** Id */
|
||||||
|
get id(): number {
|
||||||
|
return this.data.id;
|
||||||
|
}
|
||||||
|
/** 子弹名称 */
|
||||||
|
get bulletName(): string {
|
||||||
|
return this.data.bulletName;
|
||||||
|
}
|
||||||
|
/** 子弹地址 */
|
||||||
|
get bulletSrc(): string {
|
||||||
|
return this.data.bulletSrc;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "0c4a411b-9551-4944-9662-79468f748d6e",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
9
JisolGameCocos/assets/role/bullets.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "eb3f5025-2ea1-41aa-8199-b83155243445",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
9
JisolGameCocos/assets/role/bullets/疯狂松鼠.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "1a0ec24c-2cef-4b06-8140-ed00dc1ade70",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
BIN
JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png
Normal file
After Width: | Height: | Size: 73 KiB |
134
JisolGameCocos/assets/role/bullets/疯狂松鼠/attack.png.meta
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "73e7b692-0dd7-428d-a37e-5294b5b02a78",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "73e7b692-0dd7-428d-a37e-5294b5b02a78@6c48a",
|
||||||
|
"displayName": "attack",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "73e7b692-0dd7-428d-a37e-5294b5b02a78",
|
||||||
|
"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": "73e7b692-0dd7-428d-a37e-5294b5b02a78@f9941",
|
||||||
|
"displayName": "attack",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 111,
|
||||||
|
"height": 129,
|
||||||
|
"rawWidth": 113,
|
||||||
|
"rawHeight": 131,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-55.5,
|
||||||
|
-64.5,
|
||||||
|
0,
|
||||||
|
55.5,
|
||||||
|
-64.5,
|
||||||
|
0,
|
||||||
|
-55.5,
|
||||||
|
64.5,
|
||||||
|
0,
|
||||||
|
55.5,
|
||||||
|
64.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
130,
|
||||||
|
112,
|
||||||
|
130,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
112,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.008849557522123894,
|
||||||
|
0.007633587786259542,
|
||||||
|
0.9911504424778761,
|
||||||
|
0.007633587786259542,
|
||||||
|
0.008849557522123894,
|
||||||
|
0.9923664122137404,
|
||||||
|
0.9911504424778761,
|
||||||
|
0.9923664122137404
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-55.5,
|
||||||
|
-64.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
55.5,
|
||||||
|
64.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "73e7b692-0dd7-428d-a37e-5294b5b02a78@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "73e7b692-0dd7-428d-a37e-5294b5b02a78@f9941"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "45192640-5de3-4f89-9ace-421834c5fe5c",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
9
JisolGameCocos/assets/role/spine/召唤与合成819个Spine/小石头.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "099badd3-a3a5-4a0e-9d99-f9fafb1ea9d5",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "b804b631-05b6-44cb-aec7-c23a63d926e0",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "2e2d1af3-9b16-471a-801d-88c6ca984890",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.1",
|
||||||
|
"importer": "*",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "74953026-d287-43a7-ad10-bae8221f98b8",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".spine"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1,118 @@
|
|||||||
|
|
||||||
|
guaiA4eTexture_2.png
|
||||||
|
size: 1006,249
|
||||||
|
format: RGBA8888
|
||||||
|
filter: Linear,Linear
|
||||||
|
repeat: none
|
||||||
|
guaiA4e_2/timo5 002
|
||||||
|
rotate: false
|
||||||
|
xy: 157, 2
|
||||||
|
size: 52, 97
|
||||||
|
orig: 52, 97
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 003
|
||||||
|
rotate: false
|
||||||
|
xy: 888, 161
|
||||||
|
size: 58, 88
|
||||||
|
orig: 58, 88
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 004
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 3
|
||||||
|
size: 77, 96
|
||||||
|
orig: 77, 96
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 005
|
||||||
|
rotate: false
|
||||||
|
xy: 760, 187
|
||||||
|
size: 62, 62
|
||||||
|
orig: 62, 62
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 006
|
||||||
|
rotate: false
|
||||||
|
xy: 505, 121
|
||||||
|
size: 44, 30
|
||||||
|
orig: 44, 30
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 007
|
||||||
|
rotate: false
|
||||||
|
xy: 282, 118
|
||||||
|
size: 113, 131
|
||||||
|
orig: 113, 131
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 008
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 101
|
||||||
|
size: 162, 148
|
||||||
|
orig: 162, 148
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 009
|
||||||
|
rotate: false
|
||||||
|
xy: 948, 161
|
||||||
|
size: 58, 88
|
||||||
|
orig: 58, 88
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 010
|
||||||
|
rotate: false
|
||||||
|
xy: 505, 153
|
||||||
|
size: 77, 96
|
||||||
|
orig: 77, 96
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 011
|
||||||
|
rotate: false
|
||||||
|
xy: 81, 16
|
||||||
|
size: 74, 83
|
||||||
|
orig: 74, 83
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 012
|
||||||
|
rotate: false
|
||||||
|
xy: 166, 102
|
||||||
|
size: 114, 147
|
||||||
|
orig: 114, 147
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 013
|
||||||
|
rotate: false
|
||||||
|
xy: 584, 164
|
||||||
|
size: 84, 85
|
||||||
|
orig: 84, 85
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 014
|
||||||
|
rotate: false
|
||||||
|
xy: 397, 120
|
||||||
|
size: 106, 129
|
||||||
|
orig: 106, 129
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 015
|
||||||
|
rotate: false
|
||||||
|
xy: 670, 186
|
||||||
|
size: 88, 63
|
||||||
|
orig: 88, 63
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 016
|
||||||
|
rotate: false
|
||||||
|
xy: 824, 187
|
||||||
|
size: 62, 62
|
||||||
|
orig: 62, 62
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
guaiA4e_2/timo5 017
|
||||||
|
rotate: false
|
||||||
|
xy: 211, 69
|
||||||
|
size: 43, 31
|
||||||
|
orig: 43, 31
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.1",
|
||||||
|
"importer": "*",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "a0ef72ac-b418-40da-b320-095a2874e061",
|
||||||
|
"files": [
|
||||||
|
".atlas",
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
After Width: | Height: | Size: 116 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "f71c334f-843b-49b0-b14b-616629f00565",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "f71c334f-843b-49b0-b14b-616629f00565@6c48a",
|
||||||
|
"displayName": "guaiA4eTexture",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "f71c334f-843b-49b0-b14b-616629f00565",
|
||||||
|
"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": "f71c334f-843b-49b0-b14b-616629f00565@f9941",
|
||||||
|
"displayName": "guaiA4eTexture",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -8,
|
||||||
|
"offsetY": 2.5,
|
||||||
|
"trimX": 3,
|
||||||
|
"trimY": 3,
|
||||||
|
"width": 1002,
|
||||||
|
"height": 245,
|
||||||
|
"rawWidth": 1024,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-501,
|
||||||
|
-122.5,
|
||||||
|
0,
|
||||||
|
501,
|
||||||
|
-122.5,
|
||||||
|
0,
|
||||||
|
-501,
|
||||||
|
122.5,
|
||||||
|
0,
|
||||||
|
501,
|
||||||
|
122.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
3,
|
||||||
|
253,
|
||||||
|
1005,
|
||||||
|
253,
|
||||||
|
3,
|
||||||
|
8,
|
||||||
|
1005,
|
||||||
|
8
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.0029296875,
|
||||||
|
0.03125,
|
||||||
|
0.9814453125,
|
||||||
|
0.03125,
|
||||||
|
0.0029296875,
|
||||||
|
0.98828125,
|
||||||
|
0.9814453125,
|
||||||
|
0.98828125
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-501,
|
||||||
|
-122.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
501,
|
||||||
|
122.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "f71c334f-843b-49b0-b14b-616629f00565@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "f71c334f-843b-49b0-b14b-616629f00565@f9941"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "89e39252-9eec-4992-b463-ce84d256df9d",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "290902b6-6a33-4a0d-bddf-1060fef2cbd8",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
After Width: | Height: | Size: 34 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@6c48a",
|
||||||
|
"displayName": "timo5 002",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d",
|
||||||
|
"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": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@f9941",
|
||||||
|
"displayName": "timo5 002",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 50,
|
||||||
|
"height": 95,
|
||||||
|
"rawWidth": 52,
|
||||||
|
"rawHeight": 97,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-25,
|
||||||
|
-47.5,
|
||||||
|
0,
|
||||||
|
25,
|
||||||
|
-47.5,
|
||||||
|
0,
|
||||||
|
-25,
|
||||||
|
47.5,
|
||||||
|
0,
|
||||||
|
25,
|
||||||
|
47.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
96,
|
||||||
|
51,
|
||||||
|
96,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
51,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.019230769230769232,
|
||||||
|
0.010309278350515464,
|
||||||
|
0.9807692307692307,
|
||||||
|
0.010309278350515464,
|
||||||
|
0.019230769230769232,
|
||||||
|
0.9896907216494846,
|
||||||
|
0.9807692307692307,
|
||||||
|
0.9896907216494846
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-25,
|
||||||
|
-47.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
25,
|
||||||
|
47.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "bb77826b-b6c0-4b07-aeb0-ead7ca451f8d@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 35 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "53167f35-e100-434f-b671-9abe0bc64531",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "53167f35-e100-434f-b671-9abe0bc64531@6c48a",
|
||||||
|
"displayName": "timo5 003",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "53167f35-e100-434f-b671-9abe0bc64531",
|
||||||
|
"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": "53167f35-e100-434f-b671-9abe0bc64531@f9941",
|
||||||
|
"displayName": "timo5 003",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 56,
|
||||||
|
"height": 86,
|
||||||
|
"rawWidth": 58,
|
||||||
|
"rawHeight": 88,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-28,
|
||||||
|
-43,
|
||||||
|
0,
|
||||||
|
28,
|
||||||
|
-43,
|
||||||
|
0,
|
||||||
|
-28,
|
||||||
|
43,
|
||||||
|
0,
|
||||||
|
28,
|
||||||
|
43,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
87,
|
||||||
|
57,
|
||||||
|
87,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
57,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.017241379310344827,
|
||||||
|
0.011363636363636364,
|
||||||
|
0.9827586206896551,
|
||||||
|
0.011363636363636364,
|
||||||
|
0.017241379310344827,
|
||||||
|
0.9886363636363636,
|
||||||
|
0.9827586206896551,
|
||||||
|
0.9886363636363636
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-28,
|
||||||
|
-43,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
28,
|
||||||
|
43,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "53167f35-e100-434f-b671-9abe0bc64531@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "53167f35-e100-434f-b671-9abe0bc64531@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 44 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "9a740c1b-d991-4428-9549-1017bfb6358e",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "9a740c1b-d991-4428-9549-1017bfb6358e@6c48a",
|
||||||
|
"displayName": "timo5 004",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "9a740c1b-d991-4428-9549-1017bfb6358e",
|
||||||
|
"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": "9a740c1b-d991-4428-9549-1017bfb6358e@f9941",
|
||||||
|
"displayName": "timo5 004",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 75,
|
||||||
|
"height": 94,
|
||||||
|
"rawWidth": 77,
|
||||||
|
"rawHeight": 96,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-37.5,
|
||||||
|
-47,
|
||||||
|
0,
|
||||||
|
37.5,
|
||||||
|
-47,
|
||||||
|
0,
|
||||||
|
-37.5,
|
||||||
|
47,
|
||||||
|
0,
|
||||||
|
37.5,
|
||||||
|
47,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
95,
|
||||||
|
76,
|
||||||
|
95,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
76,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.012987012987012988,
|
||||||
|
0.010416666666666666,
|
||||||
|
0.987012987012987,
|
||||||
|
0.010416666666666666,
|
||||||
|
0.012987012987012988,
|
||||||
|
0.9895833333333334,
|
||||||
|
0.987012987012987,
|
||||||
|
0.9895833333333334
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-37.5,
|
||||||
|
-47,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
37.5,
|
||||||
|
47,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "9a740c1b-d991-4428-9549-1017bfb6358e@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "9a740c1b-d991-4428-9549-1017bfb6358e@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 30 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "68dd7e1f-0996-4ac8-9b45-cb68975d7236",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@6c48a",
|
||||||
|
"displayName": "timo5 005",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "68dd7e1f-0996-4ac8-9b45-cb68975d7236",
|
||||||
|
"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": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@f9941",
|
||||||
|
"displayName": "timo5 005",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 60,
|
||||||
|
"height": 60,
|
||||||
|
"rawWidth": 62,
|
||||||
|
"rawHeight": 62,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-30,
|
||||||
|
-30,
|
||||||
|
0,
|
||||||
|
30,
|
||||||
|
-30,
|
||||||
|
0,
|
||||||
|
-30,
|
||||||
|
30,
|
||||||
|
0,
|
||||||
|
30,
|
||||||
|
30,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
61,
|
||||||
|
61,
|
||||||
|
61,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
61,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.016129032258064516,
|
||||||
|
0.016129032258064516,
|
||||||
|
0.9838709677419355,
|
||||||
|
0.016129032258064516,
|
||||||
|
0.016129032258064516,
|
||||||
|
0.9838709677419355,
|
||||||
|
0.9838709677419355,
|
||||||
|
0.9838709677419355
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-30,
|
||||||
|
-30,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
30,
|
||||||
|
30,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "68dd7e1f-0996-4ac8-9b45-cb68975d7236@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 20 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@6c48a",
|
||||||
|
"displayName": "timo5 006",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68",
|
||||||
|
"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": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@f9941",
|
||||||
|
"displayName": "timo5 006",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 42,
|
||||||
|
"height": 28,
|
||||||
|
"rawWidth": 44,
|
||||||
|
"rawHeight": 30,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-21,
|
||||||
|
-14,
|
||||||
|
0,
|
||||||
|
21,
|
||||||
|
-14,
|
||||||
|
0,
|
||||||
|
-21,
|
||||||
|
14,
|
||||||
|
0,
|
||||||
|
21,
|
||||||
|
14,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
29,
|
||||||
|
43,
|
||||||
|
29,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
43,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.022727272727272728,
|
||||||
|
0.03333333333333333,
|
||||||
|
0.9772727272727273,
|
||||||
|
0.03333333333333333,
|
||||||
|
0.022727272727272728,
|
||||||
|
0.9666666666666667,
|
||||||
|
0.9772727272727273,
|
||||||
|
0.9666666666666667
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-21,
|
||||||
|
-14,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
21,
|
||||||
|
14,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "b6f851cd-8a7b-4fff-9d93-88a6165a4c68@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 73 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@6c48a",
|
||||||
|
"displayName": "timo5 007",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc",
|
||||||
|
"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": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@f9941",
|
||||||
|
"displayName": "timo5 007",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 111,
|
||||||
|
"height": 129,
|
||||||
|
"rawWidth": 113,
|
||||||
|
"rawHeight": 131,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-55.5,
|
||||||
|
-64.5,
|
||||||
|
0,
|
||||||
|
55.5,
|
||||||
|
-64.5,
|
||||||
|
0,
|
||||||
|
-55.5,
|
||||||
|
64.5,
|
||||||
|
0,
|
||||||
|
55.5,
|
||||||
|
64.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
130,
|
||||||
|
112,
|
||||||
|
130,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
112,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.008849557522123894,
|
||||||
|
0.007633587786259542,
|
||||||
|
0.9911504424778761,
|
||||||
|
0.007633587786259542,
|
||||||
|
0.008849557522123894,
|
||||||
|
0.9923664122137404,
|
||||||
|
0.9911504424778761,
|
||||||
|
0.9923664122137404
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-55.5,
|
||||||
|
-64.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
55.5,
|
||||||
|
64.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "d8b2f923-b61d-4e95-820a-7ccc0d9031bc@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 108 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@6c48a",
|
||||||
|
"displayName": "timo5 008",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d",
|
||||||
|
"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": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@f9941",
|
||||||
|
"displayName": "timo5 008",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 160,
|
||||||
|
"height": 146,
|
||||||
|
"rawWidth": 162,
|
||||||
|
"rawHeight": 148,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-80,
|
||||||
|
-73,
|
||||||
|
0,
|
||||||
|
80,
|
||||||
|
-73,
|
||||||
|
0,
|
||||||
|
-80,
|
||||||
|
73,
|
||||||
|
0,
|
||||||
|
80,
|
||||||
|
73,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
147,
|
||||||
|
161,
|
||||||
|
147,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
161,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.006172839506172839,
|
||||||
|
0.006756756756756757,
|
||||||
|
0.9938271604938271,
|
||||||
|
0.006756756756756757,
|
||||||
|
0.006172839506172839,
|
||||||
|
0.9932432432432432,
|
||||||
|
0.9938271604938271,
|
||||||
|
0.9932432432432432
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-80,
|
||||||
|
-73,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
80,
|
||||||
|
73,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "ab26edf5-c9aa-4def-bd6f-6e05efe76d0d@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 35 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "44fca669-aad5-4e22-b846-82f3a296ec1e",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "44fca669-aad5-4e22-b846-82f3a296ec1e@6c48a",
|
||||||
|
"displayName": "timo5 009",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "44fca669-aad5-4e22-b846-82f3a296ec1e",
|
||||||
|
"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": "44fca669-aad5-4e22-b846-82f3a296ec1e@f9941",
|
||||||
|
"displayName": "timo5 009",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 56,
|
||||||
|
"height": 86,
|
||||||
|
"rawWidth": 58,
|
||||||
|
"rawHeight": 88,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-28,
|
||||||
|
-43,
|
||||||
|
0,
|
||||||
|
28,
|
||||||
|
-43,
|
||||||
|
0,
|
||||||
|
-28,
|
||||||
|
43,
|
||||||
|
0,
|
||||||
|
28,
|
||||||
|
43,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
87,
|
||||||
|
57,
|
||||||
|
87,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
57,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.017241379310344827,
|
||||||
|
0.011363636363636364,
|
||||||
|
0.9827586206896551,
|
||||||
|
0.011363636363636364,
|
||||||
|
0.017241379310344827,
|
||||||
|
0.9886363636363636,
|
||||||
|
0.9827586206896551,
|
||||||
|
0.9886363636363636
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-28,
|
||||||
|
-43,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
28,
|
||||||
|
43,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "44fca669-aad5-4e22-b846-82f3a296ec1e@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "44fca669-aad5-4e22-b846-82f3a296ec1e@f9941"
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 44 KiB |
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.26",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "ad329478-0a3a-4e0f-9951-ea8a178f72a6",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@6c48a",
|
||||||
|
"displayName": "timo5 010",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "ad329478-0a3a-4e0f-9951-ea8a178f72a6",
|
||||||
|
"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": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@f9941",
|
||||||
|
"displayName": "timo5 010",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": 0,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 75,
|
||||||
|
"height": 94,
|
||||||
|
"rawWidth": 77,
|
||||||
|
"rawHeight": 96,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-37.5,
|
||||||
|
-47,
|
||||||
|
0,
|
||||||
|
37.5,
|
||||||
|
-47,
|
||||||
|
0,
|
||||||
|
-37.5,
|
||||||
|
47,
|
||||||
|
0,
|
||||||
|
37.5,
|
||||||
|
47,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
95,
|
||||||
|
76,
|
||||||
|
95,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
76,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.012987012987012988,
|
||||||
|
0.010416666666666666,
|
||||||
|
0.987012987012987,
|
||||||
|
0.010416666666666666,
|
||||||
|
0.012987012987012988,
|
||||||
|
0.9895833333333334,
|
||||||
|
0.987012987012987,
|
||||||
|
0.9895833333333334
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-37.5,
|
||||||
|
-47,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
37.5,
|
||||||
|
47,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.12",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"hasAlpha": true,
|
||||||
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
|
"redirect": "ad329478-0a3a-4e0f-9951-ea8a178f72a6@f9941"
|
||||||
|
}
|
||||||
|
}
|