init
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
FROM node:14-alpine
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN npm install pm2@5.2.2 -g
|
12
assets/diff.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "b346887f-9a0d-456e-ac18-0855f1d83924",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
42
assets/diff/diff.G123.prod.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { macro } from 'cc';
|
||||||
|
import { Account } from '../src/game/denglu/account';
|
||||||
|
import { MsgPayResult } from '../src/shared/protocols/msg_s2c/MsgPayResult';
|
||||||
|
|
||||||
|
export class Diff {
|
||||||
|
static orderNo: { orderNo: string; token: string; };
|
||||||
|
static diff() {
|
||||||
|
|
||||||
|
|
||||||
|
Account.getServerList = async () => {
|
||||||
|
return (await fly.get(`${macro.serverToolUrl}/client/getServerList`)).data;
|
||||||
|
};
|
||||||
|
|
||||||
|
Pay.sendPay = async (payId: string, args: { success?: (res?: MsgPayResult['data']) => void, fail?: (res?: MsgPayResult) => void; }, extData?: any) => {
|
||||||
|
|
||||||
|
G.event.off('paysuccess');
|
||||||
|
G.event.on('paysuccess', async (res: MsgPayResult) => {
|
||||||
|
if (res.code == 1) {
|
||||||
|
hongdian.getHdDataByKey([]);
|
||||||
|
Tip.show(lng.chongzhi_7);
|
||||||
|
args.success?.(res.data);
|
||||||
|
G.event.off('paysuccess');
|
||||||
|
G123Event.emit(G123EventType.g_payend, { order_no: this.orderNo.orderNo });
|
||||||
|
} else if (res.code == 200) {
|
||||||
|
fly.post(`${macro.serverToolUrl}/pay/getOrderNo`, G123.getPayPostArgs(payId, extData || {})).then(v => {
|
||||||
|
G123Event.emit(G123EventType.g_payrequest);
|
||||||
|
let orderNo = this.orderNo = v.data as { orderNo: string; token: string; };
|
||||||
|
CpSdk?.SendPayment({ ...orderNo });
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
Tip.show(lng.chongzhi_8);
|
||||||
|
args.fail?.(res);
|
||||||
|
}
|
||||||
|
}, this);
|
||||||
|
let payExtData = null;
|
||||||
|
if(extData) {
|
||||||
|
payExtData = {popup_id:extData.popup_id} || {}
|
||||||
|
}
|
||||||
|
Net.sendMsg('msg_c2s/Pay', { id: payId, args: payExtData });
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
9
assets/diff/diff.G123.prod.ts.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "f6e2710e-1448-4190-ac2e-7f518815bc90",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
42
assets/diff/diff.G123.test.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { macro } from 'cc';
|
||||||
|
import { Account } from '../src/game/denglu/account';
|
||||||
|
import { MsgPayResult } from '../src/shared/protocols/msg_s2c/MsgPayResult';
|
||||||
|
|
||||||
|
export class Diff {
|
||||||
|
static orderNo: { orderNo: string; token: string; };
|
||||||
|
static diff() {
|
||||||
|
|
||||||
|
|
||||||
|
Account.getServerList = async () => {
|
||||||
|
return (await fly.get(`${macro.serverToolUrl}/client/getServerList`)).data;
|
||||||
|
};
|
||||||
|
|
||||||
|
Pay.sendPay = async (payId: string, args: { success?: (res?: MsgPayResult['data']) => void, fail?: (res?: MsgPayResult) => void; }, extData?: any) => {
|
||||||
|
|
||||||
|
G.event.off('paysuccess');
|
||||||
|
G.event.on('paysuccess', async (res: MsgPayResult) => {
|
||||||
|
if (res.code == 1) {
|
||||||
|
hongdian.getHdDataByKey([]);
|
||||||
|
Tip.show(lng.chongzhi_7);
|
||||||
|
args.success?.(res.data);
|
||||||
|
G.event.off('paysuccess');
|
||||||
|
G123Event.emit(G123EventType.g_payend, { order_no: this.orderNo.orderNo });
|
||||||
|
} else if (res.code == 200) {
|
||||||
|
fly.post(`${macro.serverToolUrl}/pay/getOrderNo`, G123.getPayPostArgs(payId, extData || {})).then(v => {
|
||||||
|
G123Event.emit(G123EventType.g_payrequest);
|
||||||
|
let orderNo = this.orderNo = v.data as { orderNo: string; token: string; };
|
||||||
|
CpSdk?.SendPayment({ ...orderNo });
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
Tip.show(lng.chongzhi_8);
|
||||||
|
args.fail?.(res);
|
||||||
|
}
|
||||||
|
}, this);
|
||||||
|
let payExtData = null;
|
||||||
|
if(extData) {
|
||||||
|
payExtData = {popup_id:extData.popup_id} || {}
|
||||||
|
}
|
||||||
|
Net.sendMsg('msg_c2s/Pay', { id: payId, args: payExtData });
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
9
assets/diff/diff.G123.test.ts.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "d42f7b8a-7591-4b56-ac95-b62244cf69d4",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
6
assets/diff/diff.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
export class Diff {
|
||||||
|
static diff() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
9
assets/diff/diff.ts.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "20e23d32-c399-4093-80c1-db76b69bf916",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
2584
assets/main.scene
Normal file
11
assets/main.scene.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.43",
|
||||||
|
"importer": "scene",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "26381ab6-c580-45b8-887f-02139c9f016c",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
12
assets/res.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "eee70270-256a-42da-b19d-cb45b24c547e",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
12
assets/res/ani.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "dc5e40c8-c39c-4370-84a6-197d91036746",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
55
assets/res/ani/ani_dianji.atlas
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
ani_dianji.png
|
||||||
|
size: 237,237
|
||||||
|
format: RGBA8888
|
||||||
|
filter: Linear,Linear
|
||||||
|
repeat: none
|
||||||
|
images/2/dianji_00000
|
||||||
|
rotate: true
|
||||||
|
xy: 61, 43
|
||||||
|
size: 17, 16
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 42, 42
|
||||||
|
index: -1
|
||||||
|
images/2/dianji_00002
|
||||||
|
rotate: true
|
||||||
|
xy: 86, 2
|
||||||
|
size: 61, 60
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 20, 20
|
||||||
|
index: -1
|
||||||
|
images/2/dianji_00004
|
||||||
|
rotate: true
|
||||||
|
xy: 88, 156
|
||||||
|
size: 79, 78
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 13, 13
|
||||||
|
index: -1
|
||||||
|
images/2/dianji_00006
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 149
|
||||||
|
size: 84, 86
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 10, 8
|
||||||
|
index: -1
|
||||||
|
images/2/dianji_00008
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 62
|
||||||
|
size: 82, 85
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 12, 8
|
||||||
|
index: -1
|
||||||
|
images/2/dianji_00010
|
||||||
|
rotate: false
|
||||||
|
xy: 86, 65
|
||||||
|
size: 81, 82
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 12, 10
|
||||||
|
index: -1
|
||||||
|
images/2/dianji_00012
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 3
|
||||||
|
size: 57, 57
|
||||||
|
orig: 100, 100
|
||||||
|
offset: 22, 22
|
||||||
|
index: -1
|
12
assets/res/ani/ani_dianji.atlas.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "*",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "c19e54cf-467a-45d3-985b-a51a21f1788b",
|
||||||
|
"files": [
|
||||||
|
".atlas",
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
57
assets/res/ani/ani_dianji.json
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{
|
||||||
|
"skeleton": { "hash": "1tRSa83AAjnhFO9GqAttdn4NRxs", "spine": "3.8.99", "images": "", "audio": "" },
|
||||||
|
"bones": [
|
||||||
|
{ "name": "root" },
|
||||||
|
{ "name": "dianji2", "parent": "root" }
|
||||||
|
],
|
||||||
|
"slots": [
|
||||||
|
{ "name": "dianji2", "bone": "dianji2", "color": "ffffff00", "blend": "additive" }
|
||||||
|
],
|
||||||
|
"skins": [
|
||||||
|
{
|
||||||
|
"name": "default",
|
||||||
|
"attachments": {
|
||||||
|
"dianji2": {
|
||||||
|
"images/2/dianji_00000": { "width": 100, "height": 100 },
|
||||||
|
"images/2/dianji_00002": { "width": 100, "height": 100 },
|
||||||
|
"images/2/dianji_00004": { "width": 100, "height": 100 },
|
||||||
|
"images/2/dianji_00006": { "width": 100, "height": 100 },
|
||||||
|
"images/2/dianji_00008": { "width": 100, "height": 100 },
|
||||||
|
"images/2/dianji_00010": { "width": 100, "height": 100 },
|
||||||
|
"images/2/dianji_00012": { "width": 100, "height": 100 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animations": {
|
||||||
|
"animation": {
|
||||||
|
"slots": {
|
||||||
|
"dianji2": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffff00", "curve": "stepped" },
|
||||||
|
{ "time": 0.0333, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 0.4333, "color": "ffffffff" },
|
||||||
|
{ "time": 0.5, "color": "ffffff00" }
|
||||||
|
],
|
||||||
|
"attachment": [
|
||||||
|
{ "time": 0.0333, "name": "images/2/dianji_00000" },
|
||||||
|
{ "time": 0.1, "name": "images/2/dianji_00002" },
|
||||||
|
{ "time": 0.1667, "name": "images/2/dianji_00004" },
|
||||||
|
{ "time": 0.2333, "name": "images/2/dianji_00006" },
|
||||||
|
{ "time": 0.3, "name": "images/2/dianji_00008" },
|
||||||
|
{ "time": 0.3667, "name": "images/2/dianji_00010" },
|
||||||
|
{ "time": 0.4333, "name": "images/2/dianji_00012" },
|
||||||
|
{ "time": 0.5, "name": null }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bones": {
|
||||||
|
"dianji2": {
|
||||||
|
"scale": [
|
||||||
|
{ "x": 1.733, "y": 1.733 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
assets/res/ani/ani_dianji.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.6",
|
||||||
|
"importer": "spine-data",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "b12d8b59-a190-4d6d-a222-91d87e839b03",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
BIN
assets/res/ani/ani_dianji.png
Normal file
After Width: | Height: | Size: 53 KiB |
138
assets/res/ani/ani_dianji.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "ed8bd926-19bd-4f83-83a9-bde6ea6247df",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "ed8bd926-19bd-4f83-83a9-bde6ea6247df@6c48a",
|
||||||
|
"displayName": "ani_dianji",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "ed8bd926-19bd-4f83-83a9-bde6ea6247df",
|
||||||
|
"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": "ed8bd926-19bd-4f83-83a9-bde6ea6247df@f9941",
|
||||||
|
"displayName": "ani_dianji",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -34,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 2,
|
||||||
|
"trimY": 2,
|
||||||
|
"width": 165,
|
||||||
|
"height": 233,
|
||||||
|
"rawWidth": 237,
|
||||||
|
"rawHeight": 237,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-82.5,
|
||||||
|
-116.5,
|
||||||
|
0,
|
||||||
|
82.5,
|
||||||
|
-116.5,
|
||||||
|
0,
|
||||||
|
-82.5,
|
||||||
|
116.5,
|
||||||
|
0,
|
||||||
|
82.5,
|
||||||
|
116.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
2,
|
||||||
|
235,
|
||||||
|
167,
|
||||||
|
235,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
167,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.008438818565400843,
|
||||||
|
0.008438818565400843,
|
||||||
|
0.7046413502109705,
|
||||||
|
0.008438818565400843,
|
||||||
|
0.008438818565400843,
|
||||||
|
0.9915611814345991,
|
||||||
|
0.7046413502109705,
|
||||||
|
0.9915611814345991
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-82.5,
|
||||||
|
-116.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
82.5,
|
||||||
|
116.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "ed8bd926-19bd-4f83-83a9-bde6ea6247df@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "ed8bd926-19bd-4f83-83a9-bde6ea6247df@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
41
assets/res/ani/ani_looding.atlas
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
ani_looding.png
|
||||||
|
size: 391,391
|
||||||
|
format: RGBA8888
|
||||||
|
filter: Linear,Linear
|
||||||
|
repeat: none
|
||||||
|
images/dian
|
||||||
|
rotate: true
|
||||||
|
xy: 98, 16
|
||||||
|
size: 5, 4
|
||||||
|
orig: 19, 6
|
||||||
|
offset: 1, 1
|
||||||
|
index: -1
|
||||||
|
images/loading1
|
||||||
|
rotate: true
|
||||||
|
xy: 2, 23
|
||||||
|
size: 80, 160
|
||||||
|
orig: 93, 160
|
||||||
|
offset: 12, 0
|
||||||
|
index: -1
|
||||||
|
images/loading2
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 237
|
||||||
|
size: 147, 152
|
||||||
|
orig: 151, 153
|
||||||
|
offset: 2, 0
|
||||||
|
index: -1
|
||||||
|
images/loading3
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 105
|
||||||
|
size: 125, 130
|
||||||
|
orig: 151, 153
|
||||||
|
offset: 13, 9
|
||||||
|
index: -1
|
||||||
|
images/zi
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 2
|
||||||
|
size: 94, 19
|
||||||
|
orig: 94, 19
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
12
assets/res/ani/ani_looding.atlas.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "*",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "71477d5b-c1f9-4554-aed6-087786ee0a85",
|
||||||
|
"files": [
|
||||||
|
".atlas",
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
302
assets/res/ani/ani_looding.json
Normal file
@ -0,0 +1,302 @@
|
|||||||
|
{
|
||||||
|
"skeleton": {
|
||||||
|
"hash": "BVF0mO39EoZjkU9Pg6a1cCvWUwg",
|
||||||
|
"spine": "3.8.99",
|
||||||
|
"x": -75.49,
|
||||||
|
"y": -80.21,
|
||||||
|
"width": 151,
|
||||||
|
"height": 160.21,
|
||||||
|
"images": "",
|
||||||
|
"audio": ""
|
||||||
|
},
|
||||||
|
"bones": [
|
||||||
|
{ "name": "root" },
|
||||||
|
{ "name": "zong", "parent": "root" },
|
||||||
|
{ "name": "looding", "parent": "zong", "x": -7.52 },
|
||||||
|
{ "name": "qiangba", "parent": "zong" },
|
||||||
|
{ "name": "quan3", "parent": "looding", "x": 7.02, "y": -4.21 },
|
||||||
|
{ "name": "quan1", "parent": "quan3" },
|
||||||
|
{ "name": "quan2", "parent": "quan3" },
|
||||||
|
{ "name": "zizong", "parent": "zong" },
|
||||||
|
{ "name": "zi", "parent": "zizong" },
|
||||||
|
{ "name": "dian1", "parent": "zizong" },
|
||||||
|
{ "name": "dian2", "parent": "zizong" },
|
||||||
|
{ "name": "dian3", "parent": "zizong" }
|
||||||
|
],
|
||||||
|
"slots": [
|
||||||
|
{ "name": "qiangba", "bone": "qiangba" },
|
||||||
|
{ "name": "zhe1", "bone": "looding", "attachment": "zhe2" },
|
||||||
|
{ "name": "quan1", "bone": "quan1", "color": "ffffff00", "attachment": "images/loading2" },
|
||||||
|
{ "name": "zhe3", "bone": "looding", "attachment": "zhe3" },
|
||||||
|
{ "name": "quan2", "bone": "quan2", "color": "ffffff00", "attachment": "images/loading3" },
|
||||||
|
{ "name": "looding", "bone": "looding", "color": "ffffff00", "attachment": "images/loading1" },
|
||||||
|
{ "name": "zi", "bone": "zi", "color": "ffffff00", "attachment": "images/zi" },
|
||||||
|
{ "name": "dian1", "bone": "dian1", "color": "ffffff00", "attachment": "images/dian" },
|
||||||
|
{ "name": "dian2", "bone": "dian2", "color": "ffffff00", "attachment": "images/dian" },
|
||||||
|
{ "name": "dian3", "bone": "dian3", "color": "ffffff00", "attachment": "images/dian" }
|
||||||
|
],
|
||||||
|
"skins": [
|
||||||
|
{
|
||||||
|
"name": "default",
|
||||||
|
"attachments": {
|
||||||
|
"dian1": {
|
||||||
|
"images/dian": { "x": 5.78, "y": -0.39, "width": 19, "height": 6 }
|
||||||
|
},
|
||||||
|
"dian2": {
|
||||||
|
"images/dian": { "x": 5.78, "y": -0.39, "width": 19, "height": 6 }
|
||||||
|
},
|
||||||
|
"dian3": {
|
||||||
|
"images/dian": { "x": 5.78, "y": -0.39, "width": 19, "height": 6 }
|
||||||
|
},
|
||||||
|
"looding": {
|
||||||
|
"images/loading1": { "x": 0.5, "width": 93, "height": 160 }
|
||||||
|
},
|
||||||
|
"quan1": {
|
||||||
|
"images/loading2": { "x": 0.5, "y": 0.5, "width": 151, "height": 153 }
|
||||||
|
},
|
||||||
|
"quan2": {
|
||||||
|
"images/loading3": { "x": 0.5, "y": 0.5, "width": 151, "height": 153 }
|
||||||
|
},
|
||||||
|
"zhe1": {
|
||||||
|
"zhe2": {
|
||||||
|
"type": "clipping",
|
||||||
|
"end": "quan1",
|
||||||
|
"vertexCount": 11,
|
||||||
|
"vertices": [ -8.01, 146.66, 5.6, 64.59, -14.17, 50.31, -16.27, 26.01, -14.79, -20.49, -8.23, -31.1, -7.46, -62.49, -17.46, -71.62, -99.65, -74.14, -163.68, 88.14, -91.92, 141.5 ],
|
||||||
|
"color": "ce3a3aff"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"zhe3": {
|
||||||
|
"zhe3": {
|
||||||
|
"type": "clipping",
|
||||||
|
"end": "quan2",
|
||||||
|
"vertexCount": 14,
|
||||||
|
"vertices": [ 124.63, 160.93, 6.98, 86.44, 7.28, 62.88, -9.23, 56.02, -16.6, 33.67, -15.66, 4.51, -14.8, -22.26, -9.21, -31.33, -7.3, -55.71, -20.91, -75.29, 52.62, -159.88, 218.36, -115.26, 251.18, 27.51, 208.52, 136.91 ],
|
||||||
|
"color": "ce3a3aff"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"zi": {
|
||||||
|
"images/zi": { "y": 0.5, "width": 94, "height": 19 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"animations": {
|
||||||
|
"animation": {
|
||||||
|
"slots": {
|
||||||
|
"dian1": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 2, "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dian2": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 2, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 2.3333, "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dian3": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 0.6667, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 2, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 2.6667, "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"looding": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan1": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan2": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"zi": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffffff" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bones": {
|
||||||
|
"looding": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan3": {
|
||||||
|
"rotate": [
|
||||||
|
{},
|
||||||
|
{ "time": 0.2333, "angle": -63.72 },
|
||||||
|
{ "time": 0.3667, "angle": -62.15, "curve": "stepped" },
|
||||||
|
{ "time": 0.5667, "angle": -62.15 },
|
||||||
|
{ "time": 0.8, "angle": -124.22 },
|
||||||
|
{ "time": 0.9333, "angle": -123.06, "curve": "stepped" },
|
||||||
|
{ "time": 1.1, "angle": -123.06 },
|
||||||
|
{ "time": 1.3333, "angle": 177.77 },
|
||||||
|
{ "time": 1.5, "angle": 179.29, "curve": "stepped" },
|
||||||
|
{ "time": 1.6667, "angle": 179.29 },
|
||||||
|
{ "time": 1.9, "angle": 119.79 },
|
||||||
|
{ "time": 2.0333, "angle": 121.39, "curve": "stepped" },
|
||||||
|
{ "time": 2.2333, "angle": 121.39 },
|
||||||
|
{ "time": 2.4667, "angle": 59.38 },
|
||||||
|
{ "time": 2.6, "angle": 61.47, "curve": "stepped" },
|
||||||
|
{ "time": 2.8, "angle": 61.47 },
|
||||||
|
{ "time": 3, "angle": -2.1 },
|
||||||
|
{ "time": 3.1667, "curve": "stepped" },
|
||||||
|
{ "time": 3.3333 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{},
|
||||||
|
{ "time": 0.2333, "y": -0.55, "curve": "stepped" },
|
||||||
|
{ "time": 0.3667, "y": -0.55, "curve": "stepped" },
|
||||||
|
{ "time": 0.5667, "y": -0.55 },
|
||||||
|
{ "time": 0.8, "y": -2.67, "curve": "stepped" },
|
||||||
|
{ "time": 0.9333, "y": -2.67, "curve": "stepped" },
|
||||||
|
{ "time": 1.1, "y": -2.67 },
|
||||||
|
{ "time": 1.3333, "y": -3.94, "curve": "stepped" },
|
||||||
|
{ "time": 1.5, "y": -3.94, "curve": "stepped" },
|
||||||
|
{ "time": 1.6667, "y": -3.94 },
|
||||||
|
{ "time": 1.9, "y": -3.3, "curve": "stepped" },
|
||||||
|
{ "time": 2.0333, "y": -3.3, "curve": "stepped" },
|
||||||
|
{ "time": 2.2333, "y": -3.3 },
|
||||||
|
{ "time": 2.4667, "y": -1.84, "curve": "stepped" },
|
||||||
|
{ "time": 2.6, "y": -1.84, "curve": "stepped" },
|
||||||
|
{ "time": 2.8, "y": -1.84 },
|
||||||
|
{ "time": 3, "curve": "stepped" },
|
||||||
|
{ "time": 3.1667, "curve": "stepped" },
|
||||||
|
{ "time": 3.3333 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"zi": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "x": -23.73, "y": -93.47 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dian2": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "curve": "stepped" },
|
||||||
|
{ "time": 0.6667, "curve": "stepped" },
|
||||||
|
{ "time": 1, "curve": "stepped" },
|
||||||
|
{ "time": 2, "curve": "stepped" },
|
||||||
|
{ "time": 2.3333, "curve": "stepped" },
|
||||||
|
{ "time": 2.6667, "curve": "stepped" },
|
||||||
|
{ "time": 3 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "x": 50.1, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "x": 50.1, "y": -100.14, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
|
||||||
|
{ "time": 0.4667, "x": 50.1, "y": -93.69, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
|
||||||
|
{ "time": 0.6667, "x": 50.1, "y": -92.72, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
|
||||||
|
{ "time": 0.8333, "x": 50.1, "y": -93.04, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
|
||||||
|
{ "time": 1, "x": 50.1, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 2, "x": 50.1, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 2.3333, "x": 50.1, "y": -100.14, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
|
||||||
|
{ "time": 2.4667, "x": 50.1, "y": -93.69, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
|
||||||
|
{ "time": 2.6667, "x": 50.1, "y": -92.72, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
|
||||||
|
{ "time": 2.8333, "x": 50.1, "y": -93.04, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
|
||||||
|
{ "time": 3, "x": 50.1, "y": -100.14 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.3333 },
|
||||||
|
{ "time": 0.6667, "x": 1.405, "y": 1.405 },
|
||||||
|
{ "time": 1, "curve": "stepped" },
|
||||||
|
{ "time": 2, "curve": "stepped" },
|
||||||
|
{ "time": 2.3333 },
|
||||||
|
{ "time": 2.6667, "x": 1.405, "y": 1.405 },
|
||||||
|
{ "time": 3 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dian1": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "curve": "stepped" },
|
||||||
|
{ "time": 0.6667, "curve": "stepped" },
|
||||||
|
{ "time": 2, "curve": "stepped" },
|
||||||
|
{ "time": 2.3333, "curve": "stepped" },
|
||||||
|
{ "time": 2.6667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "x": 38.32, "y": -100.14, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
|
||||||
|
{ "time": 0.1333, "x": 38.32, "y": -93.69, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
|
||||||
|
{ "time": 0.3333, "x": 38.32, "y": -92.72, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
|
||||||
|
{ "time": 0.5, "x": 38.32, "y": -93.04, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
|
||||||
|
{ "time": 0.6667, "x": 38.32, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 2, "x": 38.32, "y": -100.14, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
|
||||||
|
{ "time": 2.1333, "x": 38.32, "y": -93.69, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
|
||||||
|
{ "time": 2.3333, "x": 38.32, "y": -92.72, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
|
||||||
|
{ "time": 2.5, "x": 38.32, "y": -93.04, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
|
||||||
|
{ "time": 2.6667, "x": 38.32, "y": -100.14 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{},
|
||||||
|
{ "time": 0.3333, "x": 1.405, "y": 1.405 },
|
||||||
|
{ "time": 0.6667, "curve": "stepped" },
|
||||||
|
{ "time": 2 },
|
||||||
|
{ "time": 2.3333, "x": 1.405, "y": 1.405 },
|
||||||
|
{ "time": 2.6667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dian3": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.6667, "curve": "stepped" },
|
||||||
|
{ "time": 1, "curve": "stepped" },
|
||||||
|
{ "time": 1.3333, "curve": "stepped" },
|
||||||
|
{ "time": 2, "curve": "stepped" },
|
||||||
|
{ "time": 2.6667, "curve": "stepped" },
|
||||||
|
{ "time": 3, "curve": "stepped" },
|
||||||
|
{ "time": 3.3333 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "x": 61.81, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 0.6667, "x": 61.81, "y": -100.14, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
|
||||||
|
{ "time": 0.8, "x": 61.81, "y": -93.69, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
|
||||||
|
{ "time": 1, "x": 61.81, "y": -92.72, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
|
||||||
|
{ "time": 1.1667, "x": 61.81, "y": -93.04, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
|
||||||
|
{ "time": 1.3333, "x": 61.81, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 2, "x": 61.81, "y": -100.14, "curve": "stepped" },
|
||||||
|
{ "time": 2.6667, "x": 61.81, "y": -100.14, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
|
||||||
|
{ "time": 2.8, "x": 61.81, "y": -93.69, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
|
||||||
|
{ "time": 3, "x": 61.81, "y": -92.72, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
|
||||||
|
{ "time": 3.1667, "x": 61.81, "y": -93.04, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
|
||||||
|
{ "time": 3.3333, "x": 61.81, "y": -100.14 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.6667 },
|
||||||
|
{ "time": 1, "x": 1.405, "y": 1.405 },
|
||||||
|
{ "time": 1.3333, "curve": "stepped" },
|
||||||
|
{ "time": 2, "curve": "stepped" },
|
||||||
|
{ "time": 2.6667 },
|
||||||
|
{ "time": 3, "x": 1.405, "y": 1.405 },
|
||||||
|
{ "time": 3.3333 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
assets/res/ani/ani_looding.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.6",
|
||||||
|
"importer": "spine-data",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "de253f7d-225e-4c99-a364-efcb22f088de",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
BIN
assets/res/ani/ani_looding.png
Normal file
After Width: | Height: | Size: 48 KiB |
134
assets/res/ani/ani_looding.png.meta
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "f91157e7-a3cb-49b6-a88e-906bd07f1cbf",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "f91157e7-a3cb-49b6-a88e-906bd07f1cbf@6c48a",
|
||||||
|
"displayName": "ani_looding",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "f91157e7-a3cb-49b6-a88e-906bd07f1cbf",
|
||||||
|
"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": "f91157e7-a3cb-49b6-a88e-906bd07f1cbf@f9941",
|
||||||
|
"displayName": "ani_looding",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -113.5,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 2,
|
||||||
|
"trimY": 2,
|
||||||
|
"width": 160,
|
||||||
|
"height": 387,
|
||||||
|
"rawWidth": 391,
|
||||||
|
"rawHeight": 391,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-80,
|
||||||
|
-193.5,
|
||||||
|
0,
|
||||||
|
80,
|
||||||
|
-193.5,
|
||||||
|
0,
|
||||||
|
-80,
|
||||||
|
193.5,
|
||||||
|
0,
|
||||||
|
80,
|
||||||
|
193.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
2,
|
||||||
|
389,
|
||||||
|
162,
|
||||||
|
389,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
162,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.005115089514066497,
|
||||||
|
0.005115089514066497,
|
||||||
|
0.4143222506393862,
|
||||||
|
0.005115089514066497,
|
||||||
|
0.005115089514066497,
|
||||||
|
0.9948849104859335,
|
||||||
|
0.4143222506393862,
|
||||||
|
0.9948849104859335
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-80,
|
||||||
|
-193.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
80,
|
||||||
|
193.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "f91157e7-a3cb-49b6-a88e-906bd07f1cbf@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "f91157e7-a3cb-49b6-a88e-906bd07f1cbf@f9941"
|
||||||
|
}
|
||||||
|
}
|
20
assets/res/ani/ani_xinshoudian.atlas
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
ani_xinshoudian.png
|
||||||
|
size: 224,224
|
||||||
|
format: RGBA8888
|
||||||
|
filter: Linear,Linear
|
||||||
|
repeat: none
|
||||||
|
xsyd_gq_dx
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 2
|
||||||
|
size: 86, 86
|
||||||
|
orig: 86, 86
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
xsyd_sz
|
||||||
|
rotate: false
|
||||||
|
xy: 2, 90
|
||||||
|
size: 99, 132
|
||||||
|
orig: 99, 132
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
12
assets/res/ani/ani_xinshoudian.atlas.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "*",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "b75c587e-dd41-4795-ac14-7ecfa3e61bb6",
|
||||||
|
"files": [
|
||||||
|
".atlas",
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
335
assets/res/ani/ani_xinshoudian.json
Normal file
@ -0,0 +1,335 @@
|
|||||||
|
{
|
||||||
|
"skeleton": {
|
||||||
|
"hash": "ipt8kOU+rDbfdExUYs/6UCNnBS0",
|
||||||
|
"spine": "3.8.99",
|
||||||
|
"x": -43,
|
||||||
|
"y": -120.61,
|
||||||
|
"width": 124.06,
|
||||||
|
"height": 163.61,
|
||||||
|
"images": "./images/",
|
||||||
|
"audio": ""
|
||||||
|
},
|
||||||
|
"bones": [
|
||||||
|
{ "name": "root" },
|
||||||
|
{ "name": "zhu", "parent": "root" },
|
||||||
|
{ "name": "shouzhi", "parent": "zhu", "x": 31.06, "y": -54.61 },
|
||||||
|
{ "name": "shouzhi2", "parent": "shouzhi", "length": 40.65, "rotation": 118.83, "x": 40.41, "y": -59.3 },
|
||||||
|
{ "name": "shouzhi3", "parent": "shouzhi2", "length": 55.27, "rotation": -3.48, "x": 40.65 },
|
||||||
|
{ "name": "shouzhi4", "parent": "shouzhi3", "length": 20.53, "rotation": 24.85, "x": 19.55, "y": 25.65 },
|
||||||
|
{ "name": "shouzhi5", "parent": "shouzhi4", "length": 19.94, "rotation": -6.17, "x": 20.53 },
|
||||||
|
{ "name": "shouzhi6", "parent": "shouzhi3", "length": 23.31, "rotation": 2.8, "x": 52.16, "y": 10.73 },
|
||||||
|
{ "name": "shouzhi7", "parent": "shouzhi6", "length": 23.19, "rotation": -1.84, "x": 23.31 },
|
||||||
|
{ "name": "quanzong", "parent": "zhu" },
|
||||||
|
{ "name": "quan1", "parent": "quanzong" },
|
||||||
|
{ "name": "quan2", "parent": "quanzong" },
|
||||||
|
{ "name": "quan3", "parent": "quanzong" }
|
||||||
|
],
|
||||||
|
"slots": [
|
||||||
|
{ "name": "quan1", "bone": "quan1", "color": "ffffff00", "attachment": "xsyd_gq_dx" },
|
||||||
|
{ "name": "quan2", "bone": "quan2", "color": "ffffff00", "attachment": "xsyd_gq_dx" },
|
||||||
|
{ "name": "quan3", "bone": "quan3", "color": "ffffff00", "attachment": "xsyd_gq_dx" },
|
||||||
|
{ "name": "shouzhi", "bone": "shouzhi", "attachment": "xsyd_sz" }
|
||||||
|
],
|
||||||
|
"skins": [
|
||||||
|
{
|
||||||
|
"name": "default",
|
||||||
|
"attachments": {
|
||||||
|
"quan1": {
|
||||||
|
"xsyd_gq_dx": { "width": 86, "height": 86 }
|
||||||
|
},
|
||||||
|
"quan2": {
|
||||||
|
"xsyd_gq_dx": { "width": 86, "height": 86 }
|
||||||
|
},
|
||||||
|
"quan3": {
|
||||||
|
"xsyd_gq_dx": { "width": 86, "height": 86 }
|
||||||
|
},
|
||||||
|
"shouzhi": {
|
||||||
|
"xsyd_sz": {
|
||||||
|
"type": "mesh",
|
||||||
|
"uvs": [ 0.29098, 0.04738, 0.33431, 0.10263, 0.38198, 0.16547, 0.4282, 0.23372, 0.48453, 0.22722, 0.57842, 0.23263, 0.6752, 0.23805, 0.78209, 0.24888, 0.8702, 0.29655, 0.8939, 0.36308, 0.90699, 0.43304, 0.92172, 0.50667, 0.9299, 0.59013, 0.94626, 0.65272, 0.96917, 0.71899, 1, 0.80357, 1, 0.87945, 0.96926, 0.90475, 0.86647, 0.93968, 0.73638, 0.97341, 0.61077, 1, 0.57391, 0.93007, 0.53851, 0.85596, 0.49427, 0.78628, 0.4279, 0.75974, 0.32831, 0.70815, 0.24649, 0.65588, 0.16467, 0.59338, 0.09194, 0.54224, 0.03134, 0.47747, 0, 0.41838, 0.03891, 0.38088, 0.07528, 0.36042, 0.14043, 0.35929, 0.20558, 0.38542, 0.23727, 0.41693, 0.28305, 0.43913, 0.28367, 0.41381, 0.25558, 0.37065, 0.2177, 0.31951, 0.17687, 0.24997, 0.13498, 0.17738, 0.10465, 0.10372, 0.1162, 0.03655, 0.15376, 0, 0.22598, 0, 0.42971, 0.31282, 0.38375, 0.33547, 0.34435, 0.37486, 0.32466, 0.43986, 0.31809, 0.22319, 0.34829, 0.28032, 0.27082, 0.15426, 0.20254, 0.06365, 0.17063, 0.48049, 0.27531, 0.53526, 0.42867, 0.63385, 0.58447, 0.69045, 0.64776, 0.79817, 0.69401, 0.88946, 0.87415, 0.84382, 0.8206, 0.76531, 0.78895, 0.65029, 0.75974, 0.5097, 0.73296, 0.36547, 0.55526, 0.36547, 0.52848, 0.51153 ],
|
||||||
|
"triangles": [ 53, 44, 45, 53, 45, 0, 43, 44, 53, 42, 43, 53, 1, 52, 53, 1, 53, 0, 52, 1, 2, 41, 42, 53, 41, 53, 52, 50, 52, 2, 40, 41, 52, 50, 2, 3, 40, 52, 50, 51, 50, 3, 51, 3, 46, 39, 40, 50, 39, 50, 51, 47, 51, 46, 38, 39, 51, 48, 38, 51, 47, 48, 51, 37, 38, 48, 49, 37, 48, 36, 37, 49, 65, 48, 47, 65, 49, 48, 29, 30, 31, 54, 33, 34, 54, 34, 35, 36, 54, 35, 55, 54, 36, 31, 33, 54, 33, 31, 32, 54, 29, 31, 28, 29, 54, 27, 28, 54, 27, 54, 55, 66, 55, 49, 26, 27, 55, 55, 36, 49, 56, 55, 66, 56, 26, 55, 25, 26, 56, 24, 25, 56, 24, 56, 57, 23, 24, 57, 46, 3, 4, 5, 46, 4, 65, 46, 5, 64, 6, 7, 64, 7, 8, 64, 8, 9, 10, 63, 64, 10, 64, 9, 63, 10, 11, 65, 47, 46, 66, 49, 65, 65, 5, 6, 65, 6, 64, 12, 62, 63, 12, 63, 11, 65, 63, 66, 63, 65, 64, 57, 63, 62, 57, 66, 63, 56, 66, 57, 62, 12, 13, 61, 62, 13, 61, 13, 14, 58, 57, 62, 61, 58, 62, 23, 57, 58, 61, 14, 15, 60, 61, 15, 22, 23, 58, 60, 15, 16, 59, 58, 61, 59, 61, 60, 22, 58, 59, 17, 60, 16, 21, 22, 59, 18, 59, 60, 18, 60, 17, 19, 59, 18, 20, 21, 59, 19, 20, 59 ],
|
||||||
|
"vertices": [ 1, 8, 17.34, -10.82, 1, 3, 4, 84.53, 0.58, 0.00161, 7, 31.84, -11.71, 0.04772, 8, 8.9, -11.43, 0.95068, 3, 4, 75.01, -0.13, 0.05642, 7, 22.3, -11.96, 0.49513, 8, -0.63, -11.99, 0.44845, 3, 4, 64.91, -0.41, 0.52751, 7, 12.2, -11.75, 0.45176, 8, -10.73, -12.1, 0.02073, 3, 4, 63.3, -5.82, 0.92035, 7, 10.32, -17.07, 0.07954, 8, -12.43, -17.48, 1.1E-4, 1, 4, 58.67, -13.91, 1, 1, 4, 53.93, -22.26, 1, 1, 4, 48.1, -31.21, 1, 1, 4, 38.68, -36.4, 1, 2, 3, 68.22, -36.51, 0.00212, 4, 29.74, -34.76, 0.99788, 2, 3, 59.51, -33.19, 0.02493, 4, 20.84, -31.98, 0.97507, 2, 3, 50.29, -29.78, 0.11371, 4, 11.43, -29.14, 0.88629, 2, 3, 40.25, -25.18, 0.37911, 4, 1.13, -25.16, 0.62089, 2, 3, 32.23, -22.61, 0.68632, 4, -7.03, -23.08, 0.31368, 2, 3, 23.47, -20.38, 0.91644, 4, -15.91, -21.39, 0.08356, 2, 3, 12.22, -17.67, 0.99739, 4, -27.3, -19.37, 0.00261, 1, 3, 3.44, -12.84, 1, 1, 3, 1.99, -8.57, 1, 1, 3, 2.85, 2.57, 1, 2, 3, 5.16, 16, 0.99434, 5, -55.74, 12.77, 0.00566, 2, 3, 8.08, 28.59, 0.98444, 5, -48.43, 23.43, 0.01556, 3, 3, 17.93, 27.33, 0.96102, 4, -24.33, 25.9, 7.8E-4, 5, -39.72, 18.68, 0.0382, 3, 3, 28.19, 25.69, 0.8387, 4, -13.99, 24.88, 0.032, 5, -30.76, 13.41, 0.1293, 3, 3, 38.36, 25.09, 0.48607, 4, -3.81, 24.9, 0.13176, 5, -21.51, 9.14, 0.38217, 3, 3, 44.6, 29.16, 0.21617, 4, 2.17, 29.34, 0.11133, 5, -14.22, 10.66, 0.67251, 3, 3, 55.32, 34.51, 0.02863, 4, 12.55, 35.34, 0.00646, 5, -2.28, 11.74, 0.96492, 3, 3, 65.27, 38.28, 2.0E-5, 5, 8.36, 11.62, 0.9972, 6, -13.36, 10.25, 0.00278, 2, 5, 19.86, 10.47, 0.61363, 6, -1.79, 10.34, 0.38637, 2, 5, 29.71, 9.89, 0.05323, 6, 8.06, 10.82, 0.94677, 1, 6, 18.38, 9.19, 1, 1, 6, 26.15, 6, 1, 1, 6, 27.03, -0.21, 1, 1, 6, 26.47, -4.67, 1, 2, 6, 22.09, -9.41, 0.99744, 7, 11.02, 21.19, 0.00256, 3, 5, 34.32, -13.21, 0.00114, 6, 15.13, -11.65, 0.97327, 7, 4.93, 17.13, 0.02559, 4, 4, 51.15, 27.03, 6.2E-4, 5, 29.25, -12.02, 0.03807, 6, 9.96, -11.02, 0.87086, 7, -0.21, 16.33, 0.09045, 4, 4, 46.56, 24.19, 0.01927, 5, 23.89, -12.67, 0.19013, 6, 4.7, -12.24, 0.41949, 7, -4.94, 13.71, 0.3711, 4, 4, 49.55, 22.7, 0.01027, 5, 25.98, -15.28, 0.11781, 6, 7.06, -14.61, 0.16726, 7, -2.02, 12.08, 0.70466, 3, 5, 31.77, -17.88, 0.02293, 6, 13.09, -16.57, 0.03807, 7, 4.32, 11.85, 0.939, 4, 5, 38.97, -20.66, 4.7E-4, 6, 20.55, -18.56, 0.00371, 7, 12.04, 11.97, 0.98716, 8, -11.65, 11.6, 0.00866, 2, 7, 22.04, 11.2, 0.63432, 8, -1.63, 11.16, 0.36568, 2, 7, 32.44, 10.34, 0.03965, 8, 8.8, 10.63, 0.96035, 1, 8, 18.85, 9.01, 1, 1, 8, 26.29, 4.06, 1, 1, 8, 28.96, -1.41, 1, 1, 8, 25.8, -7.82, 1, 2, 4, 55.41, 3.93, 0.63115, 7, 2.92, -6.96, 0.36885, 2, 4, 54.66, 9.32, 0.08338, 7, 2.43, -1.53, 0.91662, 4, 4, 51.63, 15.07, 0.0043, 5, 24.66, -23.08, 0.03413, 6, 6.58, -22.5, 0.03207, 7, -0.32, 4.36, 0.9295, 4, 4, 44.71, 20.5, 0.06043, 5, 20.66, -15.24, 0.23322, 6, 1.77, -15.13, 0.19919, 7, -6.96, 10.12, 0.50717, 3, 4, 70.83, 8.85, 0.02461, 7, 18.56, -2.79, 0.91483, 8, -4.66, -2.94, 0.06055, 2, 4, 62.74, 9.37, 0.05522, 7, 10.5, -1.87, 0.94478, 3, 4, 81.06, 9.18, 7.9E-4, 7, 28.79, -2.96, 0.01134, 8, 5.58, -2.78, 0.98787, 1, 8, 19.29, -2.02, 1, 2, 6, 8.51, -0.44, 0.99825, 7, -4.5, 26.1, 0.00175, 4, 4, 35.42, 30.31, 0.00764, 5, 16.36, -2.43, 0.93884, 6, -3.89, -2.87, 0.02817, 7, -15.76, 20.37, 0.02536, 4, 3, 59.12, 21.08, 0.01491, 4, 17.16, 22.16, 0.11972, 5, -3.64, -2.16, 0.86428, 7, -34.4, 13.12, 0.00108, 3, 3, 45.14, 11.17, 0.25071, 4, 3.8, 11.42, 0.51757, 5, -20.27, -6.29, 0.23172, 3, 3, 29.66, 12.53, 0.88625, 4, -11.73, 11.84, 0.03339, 5, -34.19, 0.62, 0.08036, 2, 3, 16.89, 14.33, 0.97946, 5, -45.42, 6.95, 0.02054, 1, 3, 13.57, -4.2, 1, 2, 3, 25.21, -4.55, 0.99429, 4, -15.13, -5.48, 0.00571, 2, 3, 40.02, -9.12, 0.50375, 4, -0.07, -9.15, 0.49625, 2, 3, 57.67, -15.54, 0.02918, 4, 17.94, -14.48, 0.97082, 1, 4, 36.28, -20.23, 1, 1, 4, 43.81, -4.33, 1, 3, 4, 27.52, 6.32, 0.8358, 5, -0.89, -20.89, 0.14059, 7, -24.82, -3.21, 0.02361 ],
|
||||||
|
"hull": 46,
|
||||||
|
"edges": [ 78, 76, 76, 74, 74, 72, 72, 70, 70, 68, 68, 66, 66, 64, 64, 62, 62, 60, 60, 58, 58, 56, 56, 54, 54, 52, 52, 50, 50, 48, 48, 46, 46, 44, 44, 42, 42, 40, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 40, 38, 38, 36, 36, 34, 30, 32, 34, 32, 92, 94, 94, 96, 96, 98, 98, 72 ],
|
||||||
|
"width": 99,
|
||||||
|
"height": 132
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"events": {
|
||||||
|
"hit": {}
|
||||||
|
},
|
||||||
|
"animations": {
|
||||||
|
"dianji": {
|
||||||
|
"slots": {
|
||||||
|
"quan1": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffff00", "curve": "stepped" },
|
||||||
|
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "color": "ffffffff" },
|
||||||
|
{ "time": 0.5333, "color": "ffffff00" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan2": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffff00", "curve": "stepped" },
|
||||||
|
{ "time": 0.2, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 0.4667, "color": "ffffffff" },
|
||||||
|
{ "time": 0.6667, "color": "ffffff00" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan3": {
|
||||||
|
"color": [
|
||||||
|
{ "color": "ffffff00", "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
|
||||||
|
{ "time": 0.6, "color": "ffffffff" },
|
||||||
|
{ "time": 0.8, "color": "ffffff00" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bones": {
|
||||||
|
"shouzhi5": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.0667, "angle": -3.76, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi4": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.0667, "angle": -0.59, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi3": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.0667, "angle": 3.1, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "x": 16.56, "y": 14.8, "curve": "stepped" },
|
||||||
|
{ "time": 0.0667, "x": 16.56, "y": 14.8, "curve": "stepped" },
|
||||||
|
{ "time": 0.2667, "x": 16.56, "y": 14.8 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi7": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.0667, "angle": 17.92, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi6": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.0667, "angle": 17.92, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi2": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2667 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan1": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.0667, "curve": "stepped" },
|
||||||
|
{ "time": 0.5333 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.0667, "curve": "stepped" },
|
||||||
|
{ "time": 0.5333 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "x": 0.237, "y": 0.237, "curve": "stepped" },
|
||||||
|
{ "time": 0.0667, "x": 0.237, "y": 0.237, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.5333, "x": 1.407, "y": 1.407 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan2": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2, "curve": "stepped" },
|
||||||
|
{ "time": 0.6667 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.2, "curve": "stepped" },
|
||||||
|
{ "time": 0.6667 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "x": 0.237, "y": 0.237, "curve": "stepped" },
|
||||||
|
{ "time": 0.2, "x": 0.237, "y": 0.237, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.6667, "x": 1.407, "y": 1.407 }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"quan3": {
|
||||||
|
"rotate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "curve": "stepped" },
|
||||||
|
{ "time": 0.8 }
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "curve": "stepped" },
|
||||||
|
{ "time": 0.8 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{ "x": 0.237, "y": 0.237, "curve": "stepped" },
|
||||||
|
{ "time": 0.3333, "x": 0.237, "y": 0.237, "curve": 0.25, "c3": 0.75 },
|
||||||
|
{ "time": 0.8, "x": 1.407, "y": 1.407 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"events": [
|
||||||
|
{ "time": 0.0667, "name": "hit" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"wait": {
|
||||||
|
"bones": {
|
||||||
|
"shouzhi": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{ "x": 16.56, "y": 14.8 }
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi7": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi6": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi5": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi4": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi3": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shouzhi2": {
|
||||||
|
"rotate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"translate": [
|
||||||
|
{}
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
assets/res/ani/ani_xinshoudian.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.2.6",
|
||||||
|
"importer": "spine-data",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "3c3f0d57-d6c5-46b9-b531-87cc4694d0c1",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
BIN
assets/res/ani/ani_xinshoudian.png
Normal file
After Width: | Height: | Size: 24 KiB |
134
assets/res/ani/ani_xinshoudian.png.meta
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "35575da0-2309-470d-8058-3d92c7214038",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "35575da0-2309-470d-8058-3d92c7214038@6c48a",
|
||||||
|
"displayName": "ani_xinshoudian",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "35575da0-2309-470d-8058-3d92c7214038",
|
||||||
|
"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": "35575da0-2309-470d-8058-3d92c7214038@f9941",
|
||||||
|
"displayName": "ani_xinshoudian",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -60.5,
|
||||||
|
"offsetY": 0,
|
||||||
|
"trimX": 2,
|
||||||
|
"trimY": 2,
|
||||||
|
"width": 99,
|
||||||
|
"height": 220,
|
||||||
|
"rawWidth": 224,
|
||||||
|
"rawHeight": 224,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-49.5,
|
||||||
|
-110,
|
||||||
|
0,
|
||||||
|
49.5,
|
||||||
|
-110,
|
||||||
|
0,
|
||||||
|
-49.5,
|
||||||
|
110,
|
||||||
|
0,
|
||||||
|
49.5,
|
||||||
|
110,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
2,
|
||||||
|
222,
|
||||||
|
101,
|
||||||
|
222,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
101,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.008928571428571428,
|
||||||
|
0.008928571428571428,
|
||||||
|
0.45089285714285715,
|
||||||
|
0.008928571428571428,
|
||||||
|
0.008928571428571428,
|
||||||
|
0.9910714285714286,
|
||||||
|
0.45089285714285715,
|
||||||
|
0.9910714285714286
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-49.5,
|
||||||
|
-110,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
49.5,
|
||||||
|
110,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "35575da0-2309-470d-8058-3d92c7214038@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "35575da0-2309-470d-8058-3d92c7214038@f9941"
|
||||||
|
}
|
||||||
|
}
|
12
assets/res/clip.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "5ffa3a19-b58b-42ed-9828-7acbaf346113",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
3201
assets/res/clip/piaozi-001.anim
Normal file
13
assets/res/clip/piaozi-001.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "5af1a1d5-29a2-420e-a9db-b4f23bcdbc4a",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "piaozi-001"
|
||||||
|
}
|
||||||
|
}
|
3942
assets/res/clip/piaozi-002.anim
Normal file
13
assets/res/clip/piaozi-002.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "c13b37c0-f216-4d29-af0f-663d725ead40",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "piaozi-002"
|
||||||
|
}
|
||||||
|
}
|
3942
assets/res/clip/piaozi.anim
Normal file
13
assets/res/clip/piaozi.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "90edbc63-d9a6-44c7-8a44-8e6fca5b35b7",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "piaozi"
|
||||||
|
}
|
||||||
|
}
|
496
assets/res/clip/powerTip.anim
Normal file
@ -0,0 +1,496 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"__type__": "cc.AnimationClip",
|
||||||
|
"_name": "powerTip",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"embeddedPlayerGroups": []
|
||||||
|
},
|
||||||
|
"_native": "",
|
||||||
|
"sample": 60,
|
||||||
|
"speed": 1,
|
||||||
|
"wrapMode": 0,
|
||||||
|
"enableTrsBlending": false,
|
||||||
|
"_duration": 1.15,
|
||||||
|
"_hash": 500763545,
|
||||||
|
"_tracks": [
|
||||||
|
{
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 12
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_exoticAnimation": null,
|
||||||
|
"_events": [],
|
||||||
|
"_embeddedPlayers": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.VectorTrack",
|
||||||
|
"_binding": {
|
||||||
|
"__type__": "cc.animation.TrackBinding",
|
||||||
|
"path": {
|
||||||
|
"__id__": 2
|
||||||
|
},
|
||||||
|
"proxy": null
|
||||||
|
},
|
||||||
|
"_channels": [
|
||||||
|
{
|
||||||
|
"__id__": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 8
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 10
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_nComponents": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.TrackPath",
|
||||||
|
"_paths": [
|
||||||
|
{
|
||||||
|
"__id__": 3
|
||||||
|
},
|
||||||
|
"scale"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.HierarchyPath",
|
||||||
|
"path": "bg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.Channel",
|
||||||
|
"_curve": {
|
||||||
|
"__id__": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealCurve",
|
||||||
|
"_times": [
|
||||||
|
0,
|
||||||
|
0.06666666666666667,
|
||||||
|
0.11666666666666667,
|
||||||
|
0.18333333333333332,
|
||||||
|
0.8333333333333334,
|
||||||
|
1.15
|
||||||
|
],
|
||||||
|
"_values": [
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 0.800000011920929,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1.100000023841858,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 0.949999988079071,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preExtrapolation": 1,
|
||||||
|
"postExtrapolation": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.Channel",
|
||||||
|
"_curve": {
|
||||||
|
"__id__": 7
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealCurve",
|
||||||
|
"_times": [
|
||||||
|
0,
|
||||||
|
0.06666666666666667,
|
||||||
|
0.11666666666666667,
|
||||||
|
0.18333333333333332,
|
||||||
|
0.8333333333333334,
|
||||||
|
1.15
|
||||||
|
],
|
||||||
|
"_values": [
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 0.800000011920929,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1.100000023841858,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 0.949999988079071,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preExtrapolation": 1,
|
||||||
|
"postExtrapolation": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.Channel",
|
||||||
|
"_curve": {
|
||||||
|
"__id__": 9
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealCurve",
|
||||||
|
"_times": [
|
||||||
|
0,
|
||||||
|
0.06666666666666667,
|
||||||
|
0.11666666666666667,
|
||||||
|
0.18333333333333332,
|
||||||
|
0.8333333333333334,
|
||||||
|
1.15
|
||||||
|
],
|
||||||
|
"_values": [
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 1,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preExtrapolation": 1,
|
||||||
|
"postExtrapolation": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.Channel",
|
||||||
|
"_curve": {
|
||||||
|
"__id__": 11
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealCurve",
|
||||||
|
"_times": [],
|
||||||
|
"_values": [],
|
||||||
|
"preExtrapolation": 1,
|
||||||
|
"postExtrapolation": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.RealTrack",
|
||||||
|
"_binding": {
|
||||||
|
"__type__": "cc.animation.TrackBinding",
|
||||||
|
"path": {
|
||||||
|
"__id__": 13
|
||||||
|
},
|
||||||
|
"proxy": null
|
||||||
|
},
|
||||||
|
"_channel": {
|
||||||
|
"__id__": 16
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.TrackPath",
|
||||||
|
"_paths": [
|
||||||
|
{
|
||||||
|
"__id__": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 15
|
||||||
|
},
|
||||||
|
"opacity"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.HierarchyPath",
|
||||||
|
"path": "bg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.ComponentPath",
|
||||||
|
"component": "cc.UIOpacity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.Channel",
|
||||||
|
"_curve": {
|
||||||
|
"__id__": 17
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealCurve",
|
||||||
|
"_times": [
|
||||||
|
0,
|
||||||
|
0.06666666666666667,
|
||||||
|
0.11666666666666667,
|
||||||
|
0.18333333333333332,
|
||||||
|
0.8333333333333334,
|
||||||
|
1.15
|
||||||
|
],
|
||||||
|
"_values": [
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 0,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preExtrapolation": 1,
|
||||||
|
"postExtrapolation": 1
|
||||||
|
}
|
||||||
|
]
|
13
assets/res/clip/powerTip.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "58507cbe-703f-4be5-967a-9d0b23d8785d",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "powerTip"
|
||||||
|
}
|
||||||
|
}
|
2318
assets/res/clip/xiaoshi.anim
Normal file
13
assets/res/clip/xiaoshi.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "2df84d30-9490-4503-b8ad-b4786f119fe7",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "xiaoshi"
|
||||||
|
}
|
||||||
|
}
|
2727
assets/res/clip/zongshanghai.anim
Normal file
13
assets/res/clip/zongshanghai.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "36f9a1cb-a409-402e-8107-98122e5bb314",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "zongshanghai"
|
||||||
|
}
|
||||||
|
}
|
12
assets/res/effect.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "ea145a0e-e497-41b5-8b5d-dc2c8c055367",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
93
assets/res/effect/2d_gray_spine.effect
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd.
|
||||||
|
CCEffect %{
|
||||||
|
techniques:
|
||||||
|
- passes:
|
||||||
|
- vert: sprite-vs:vert
|
||||||
|
frag: sprite-fs:frag
|
||||||
|
depthStencilState:
|
||||||
|
depthTest: false
|
||||||
|
depthWrite: false
|
||||||
|
blendState:
|
||||||
|
targets:
|
||||||
|
- blend: true
|
||||||
|
blendSrc: src_alpha
|
||||||
|
blendDst: one_minus_src_alpha
|
||||||
|
blendDstAlpha: one_minus_src_alpha
|
||||||
|
rasterizerState:
|
||||||
|
cullMode: none
|
||||||
|
properties:
|
||||||
|
alphaThreshold: { value: 0.5 }
|
||||||
|
}%
|
||||||
|
|
||||||
|
CCProgram sprite-vs %{
|
||||||
|
precision highp float;
|
||||||
|
#include <builtin/uniforms/cc-global>
|
||||||
|
#if USE_LOCAL
|
||||||
|
#include <builtin/uniforms/cc-local>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
in vec3 a_position;
|
||||||
|
in vec2 a_texCoord;
|
||||||
|
in vec4 a_color;
|
||||||
|
|
||||||
|
out vec4 v_light;
|
||||||
|
out vec2 uv0;
|
||||||
|
|
||||||
|
#if TWO_COLORED
|
||||||
|
in vec4 a_color2;
|
||||||
|
out vec4 v_dark;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
vec4 vert () {
|
||||||
|
vec4 pos = vec4(a_position, 1);
|
||||||
|
|
||||||
|
#if USE_LOCAL
|
||||||
|
pos = cc_matWorld * pos;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
pos = cc_matViewProj * pos;
|
||||||
|
|
||||||
|
uv0 = a_texCoord;
|
||||||
|
|
||||||
|
v_light = a_color;
|
||||||
|
#if TWO_COLORED
|
||||||
|
v_dark = a_color2;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
}%
|
||||||
|
|
||||||
|
CCProgram sprite-fs %{
|
||||||
|
precision highp float;
|
||||||
|
#include <builtin/internal/alpha-test>
|
||||||
|
|
||||||
|
in vec4 v_light;
|
||||||
|
#if TWO_COLORED
|
||||||
|
in vec4 v_dark;
|
||||||
|
#endif
|
||||||
|
in vec2 uv0;
|
||||||
|
#pragma builtin(local)
|
||||||
|
layout(set = 2, binding = 11) uniform sampler2D cc_spriteTexture;
|
||||||
|
|
||||||
|
vec4 frag () {
|
||||||
|
|
||||||
|
vec4 o = vec4(1, 1, 1, 1);
|
||||||
|
#if TWO_COLORED
|
||||||
|
vec4 texColor = vec4(1, 1, 1, 1);
|
||||||
|
|
||||||
|
texColor *= texture(cc_spriteTexture, uv0);
|
||||||
|
o.a = texColor.a * v_light.a;
|
||||||
|
o.rgb = ((texColor.a - 1.0) * v_dark.a + 1.0 - texColor.rgb) * v_dark.rgb + texColor.rgb * v_light.rgb;
|
||||||
|
#else
|
||||||
|
o *= texture(cc_spriteTexture, uv0);
|
||||||
|
o *= v_light;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b;
|
||||||
|
o.r = o.g = o.b = gray;
|
||||||
|
|
||||||
|
ALPHA_TEST(o);
|
||||||
|
return o;
|
||||||
|
}
|
||||||
|
}%
|
11
assets/res/effect/2d_gray_spine.effect.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.6.3",
|
||||||
|
"importer": "effect",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "0adb5b1d-b0e4-4813-a71e-36a5a7cf964f",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
203
assets/res/effect/gaussian.effect
Normal file
@ -0,0 +1,203 @@
|
|||||||
|
// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd.
|
||||||
|
// 高斯模糊
|
||||||
|
//
|
||||||
|
// 参考资料(必读)
|
||||||
|
// * http://www.ruanyifeng.com/blog/2012/11/gaussian_blur.html
|
||||||
|
// * https://zh.wikipedia.org/wiki/%E9%AB%98%E6%96%AF%E6%A8%A1%E7%B3%8A
|
||||||
|
|
||||||
|
|
||||||
|
CCEffect %{
|
||||||
|
techniques:
|
||||||
|
- passes:
|
||||||
|
- vert: sprite-vs:vert
|
||||||
|
frag: sprite-fs:frag
|
||||||
|
depthStencilState:
|
||||||
|
depthTest: false
|
||||||
|
depthWrite: false
|
||||||
|
blendState:
|
||||||
|
targets:
|
||||||
|
- blend: true
|
||||||
|
blendSrc: src_alpha
|
||||||
|
blendDst: one_minus_src_alpha
|
||||||
|
blendDstAlpha: one_minus_src_alpha
|
||||||
|
rasterizerState:
|
||||||
|
cullMode: none
|
||||||
|
properties:
|
||||||
|
alphaThreshold: { value: 0.5 }
|
||||||
|
# 标准方差值
|
||||||
|
# stDev: {
|
||||||
|
# value: 0.84089642,
|
||||||
|
# editor: {
|
||||||
|
# tooltip: 标准方差值
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
|
||||||
|
# 纹理尺寸
|
||||||
|
textureSize: {
|
||||||
|
value: [100.0, 100.0],
|
||||||
|
editor: {
|
||||||
|
tooltip: 纹理尺寸px(宽 x 高)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}%
|
||||||
|
|
||||||
|
CCProgram sprite-vs %{
|
||||||
|
precision highp float;
|
||||||
|
#include <builtin/uniforms/cc-global>
|
||||||
|
#if USE_LOCAL
|
||||||
|
#include <builtin/uniforms/cc-local>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
in vec3 a_position;
|
||||||
|
in vec2 a_texCoord;
|
||||||
|
in vec4 a_color;
|
||||||
|
|
||||||
|
out vec4 color;
|
||||||
|
out vec2 uv0;
|
||||||
|
|
||||||
|
vec4 vert () {
|
||||||
|
vec4 pos = vec4(a_position, 1);
|
||||||
|
|
||||||
|
#if USE_LOCAL
|
||||||
|
pos = cc_matWorld * pos;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if USE_PIXEL_ALIGNMENT
|
||||||
|
pos = cc_matView * pos;
|
||||||
|
pos.xyz = floor(pos.xyz);
|
||||||
|
pos = cc_matProj * pos;
|
||||||
|
#else
|
||||||
|
pos = cc_matViewProj * pos;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
uv0 = a_texCoord;
|
||||||
|
|
||||||
|
color = a_color;
|
||||||
|
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
}%
|
||||||
|
|
||||||
|
CCProgram sprite-fs %{
|
||||||
|
precision highp float;
|
||||||
|
#include <builtin/internal/embedded-alpha>
|
||||||
|
#include <builtin/internal/alpha-test>
|
||||||
|
|
||||||
|
in vec4 color;
|
||||||
|
|
||||||
|
#if USE_TEXTURE
|
||||||
|
in vec2 uv0;
|
||||||
|
#pragma builtin(local)
|
||||||
|
layout(set = 2, binding = 11) uniform sampler2D cc_spriteTexture;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if ENABLE_GAUSSIAN_BLUR
|
||||||
|
// 定义无理数
|
||||||
|
#pragma define e 2.718281828459045
|
||||||
|
|
||||||
|
// 定义标准方差值(方差值越大,越模糊,但是需要计算的高斯矩阵范围会变大,从而带来巨大的计算量
|
||||||
|
|
||||||
|
// #pragma define stDev 0.84089642
|
||||||
|
#pragma define stDev 1.5
|
||||||
|
// #pragma define stDev 5.0
|
||||||
|
// #pragma define stDev 10.0
|
||||||
|
|
||||||
|
// 定义π
|
||||||
|
#pragma define pi 3.141592653589793
|
||||||
|
|
||||||
|
// 接收外部变量
|
||||||
|
uniform GaussianBlur {
|
||||||
|
// 纹理尺寸(宽 x 高)(px)
|
||||||
|
vec2 textureSize;
|
||||||
|
|
||||||
|
// 标准方差值
|
||||||
|
// float stDev;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取权重(对应二维高斯函数公式,见 https://zh.wikipedia.org/wiki/%E9%AB%98%E6%96%AF%E6%A8%A1%E7%B3%8A )
|
||||||
|
*/
|
||||||
|
float getWeight(float x, float y) {
|
||||||
|
return (1.0 / (2.0 * pi * pow(stDev, 2.0))) * pow(1.0 / e, (pow(x, 2.0) + pow(y, 2.0)) / (2.0 * pow(stDev, 2.0)));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
vec4 frag () {
|
||||||
|
vec4 o = vec4(1, 1, 1, 1);
|
||||||
|
|
||||||
|
#if USE_TEXTURE
|
||||||
|
o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0);
|
||||||
|
#if CC_USE_ALPHA_ATLAS_TEXTURE
|
||||||
|
o.a *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0 + vec2(0, 0.5)).r;
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
o *= color;
|
||||||
|
ALPHA_TEST(o);
|
||||||
|
|
||||||
|
#if ENABLE_GAUSSIAN_BLUR
|
||||||
|
|
||||||
|
// 根据高斯分布(也叫正态分布),在3个标准差范围内的分布比例占到99%的权重,因此我们只需要计算矩阵范围 [6 * stDev + 1, 6 * stDev +1] 上的权重
|
||||||
|
|
||||||
|
const highp float size = floor(stDev * 6.0 + 1.0);
|
||||||
|
const highp float halfSize = floor(size / 2.0);
|
||||||
|
|
||||||
|
// 步骤一:计算高斯矩阵上所有权重的和
|
||||||
|
|
||||||
|
// // v1:遍历所有点,每个点都计算权重
|
||||||
|
// float totalWeight = 0.0;
|
||||||
|
// for(float x = -halfSize; x<= halfSize; x++) {
|
||||||
|
// for (float y = -halfSize; y<= halfSize; y++) {
|
||||||
|
// totalWeight += getWeight(x, y);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// v2:因为高斯分布是对称的,所以只计算原点、X轴正方向 * 2 、Y轴正方向 * 2 、第一象限的权重 * 4即可求出所有权重之和,相比起v1版本,减少很多循环计算
|
||||||
|
|
||||||
|
// 原点
|
||||||
|
float totalWeight = getWeight(0.0, 0.0);
|
||||||
|
|
||||||
|
// X轴正方向上的权重 * 2.0 就是整个X轴上的权重
|
||||||
|
for(float x = 1.0; x <= halfSize; x++) {
|
||||||
|
totalWeight += getWeight(x, 0.0) * 2.0;
|
||||||
|
}
|
||||||
|
// Y轴正方向上的权重 * 2.0 就是整个Y轴上的权重
|
||||||
|
for(float y = 1.0; y <= halfSize; y++) {
|
||||||
|
totalWeight += getWeight(0.0, y) * 2.0;
|
||||||
|
}
|
||||||
|
// 第一象限的权重 * 4.0 就是4个象限的权重
|
||||||
|
for(float x = 1.0; x <= halfSize; x++) {
|
||||||
|
for (float y = 1.0; y<= halfSize; y++) {
|
||||||
|
totalWeight += getWeight(x, y) * 4.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO:
|
||||||
|
//
|
||||||
|
// 因为权重矩阵是一次性计算即可不断应用,因此可以将权重矩阵的计算放到CPU计算,并传入到Shader直接渲染,因此有以下优化方案
|
||||||
|
//
|
||||||
|
// v3:原始权重矩阵在CPU计算并传入到Shader
|
||||||
|
// v4:加权平均后的权重矩阵在CPU计算并传入Shader
|
||||||
|
|
||||||
|
|
||||||
|
// 步骤二:采样周边像素并应用加权平均值,得出最终像素值
|
||||||
|
vec4 finalColor = vec4(0.0, 0.0, 0.0, 0.0);
|
||||||
|
// float divider = 0.01;
|
||||||
|
float onePxWidth = 1.0 / textureSize.x;
|
||||||
|
float onePxHeight = 1.0 / textureSize.y;
|
||||||
|
for(float x = -halfSize; x<= halfSize; x++) {
|
||||||
|
for (float y = -halfSize; y<= halfSize; y++) {
|
||||||
|
// 求出对应坐标的真正权重(对应权重矩阵)
|
||||||
|
float weight = getWeight(x, y) / totalWeight;
|
||||||
|
|
||||||
|
// 求出对应坐标像素颜色值的加权值
|
||||||
|
finalColor += CCSampleWithAlphaSeparated(cc_spriteTexture, uv0 + vec2(onePxWidth * x, onePxHeight * y)) * weight;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
o = finalColor;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return o;
|
||||||
|
}
|
||||||
|
}%
|
11
assets/res/effect/gaussian.effect.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.6.3",
|
||||||
|
"importer": "effect",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "6bd3f49c-1aeb-48af-a6a3-1c093f7464f1",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
1998
assets/res/heroInfo_in.anim
Normal file
13
assets/res/heroInfo_in.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "9c7521c3-d6a8-4bb8-b371-459b578d416f",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "heroInfo_in"
|
||||||
|
}
|
||||||
|
}
|
110
assets/res/jia.anim
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"__type__": "cc.AnimationClip",
|
||||||
|
"_name": "jia",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"embeddedPlayerGroups": []
|
||||||
|
},
|
||||||
|
"_native": "",
|
||||||
|
"sample": 60,
|
||||||
|
"speed": 0.1,
|
||||||
|
"wrapMode": 2,
|
||||||
|
"enableTrsBlending": false,
|
||||||
|
"_duration": 0.3333333333333333,
|
||||||
|
"_hash": 500763545,
|
||||||
|
"_tracks": [
|
||||||
|
{
|
||||||
|
"__id__": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_exoticAnimation": null,
|
||||||
|
"_events": [],
|
||||||
|
"_embeddedPlayers": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.RealTrack",
|
||||||
|
"_binding": {
|
||||||
|
"__type__": "cc.animation.TrackBinding",
|
||||||
|
"path": {
|
||||||
|
"__id__": 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"_channel": {
|
||||||
|
"__id__": 4
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.TrackPath",
|
||||||
|
"_paths": [
|
||||||
|
{
|
||||||
|
"__id__": 3
|
||||||
|
},
|
||||||
|
"opacity"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.ComponentPath",
|
||||||
|
"component": "cc.UIOpacity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.animation.Channel",
|
||||||
|
"_curve": {
|
||||||
|
"__id__": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealCurve",
|
||||||
|
"_times": [
|
||||||
|
0,
|
||||||
|
0.16666666666666666,
|
||||||
|
0.3333333333333333
|
||||||
|
],
|
||||||
|
"_values": [
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 0,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.RealKeyframeValue",
|
||||||
|
"interpolationMode": 0,
|
||||||
|
"tangentWeightMode": 0,
|
||||||
|
"value": 255,
|
||||||
|
"rightTangent": 0,
|
||||||
|
"rightTangentWeight": 1,
|
||||||
|
"leftTangent": 0,
|
||||||
|
"leftTangentWeight": 1,
|
||||||
|
"easingMethod": 0,
|
||||||
|
"__editorExtras__": {
|
||||||
|
"tangentMode": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preExtrapolation": 1,
|
||||||
|
"postExtrapolation": 1
|
||||||
|
}
|
||||||
|
]
|
13
assets/res/jia.anim.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"ver": "2.0.3",
|
||||||
|
"importer": "animation-clip",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "79164c35-258b-4800-a469-1f93add2da76",
|
||||||
|
"files": [
|
||||||
|
".cconb"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"name": "jia"
|
||||||
|
}
|
||||||
|
}
|
15
assets/resources.meta
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "0f824ad5-f71a-4563-967e-7cccdbef7843",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"isBundle": true,
|
||||||
|
"bundleName": "resources",
|
||||||
|
"priority": 8,
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
12
assets/resources/font.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "7ad41404-0316-447f-ac29-593f073b1c60",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/impact.ttf
Normal file
12
assets/resources/font/impact.ttf.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.1",
|
||||||
|
"importer": "ttf-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "42ef50e6-b236-4faf-817d-add0c1fea62f",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
"impact.ttf"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
21
assets/resources/font/mingz.fnt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<font>
|
||||||
|
<info face="Arial" size="32" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="1" aa="1" padding="0,0,0,0" spacing="1,1" outline="0"/>
|
||||||
|
<common lineHeight="32" base="26" scaleW="256" scaleH="256" pages="1" packed="0" alphaChnl="1" redChnl="0" greenChnl="0" blueChnl="0"/>
|
||||||
|
<pages>
|
||||||
|
<page id="0" file="mingz_0.png" />
|
||||||
|
</pages>
|
||||||
|
<chars count="11">
|
||||||
|
<char id="48" x="0" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="49" x="25" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="50" x="50" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="51" x="75" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="52" x="100" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="53" x="125" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="54" x="150" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="55" x="175" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="56" x="200" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="57" x="225" y="0" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="120" x="0" y="27" width="24" height="26" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
</chars>
|
||||||
|
</font>
|
143
assets/resources/font/mingz.fnt.meta
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "9a428f27-2f70-48f2-a227-8ccb22c74afc",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 32,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "mingz_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"48": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"49": {
|
||||||
|
"rect": {
|
||||||
|
"x": 25,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"50": {
|
||||||
|
"rect": {
|
||||||
|
"x": 50,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"rect": {
|
||||||
|
"x": 75,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"52": {
|
||||||
|
"rect": {
|
||||||
|
"x": 100,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"53": {
|
||||||
|
"rect": {
|
||||||
|
"x": 125,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"54": {
|
||||||
|
"rect": {
|
||||||
|
"x": 150,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"55": {
|
||||||
|
"rect": {
|
||||||
|
"x": 175,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"56": {
|
||||||
|
"rect": {
|
||||||
|
"x": 200,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"57": {
|
||||||
|
"rect": {
|
||||||
|
"x": 225,
|
||||||
|
"y": 0,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"120": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 27,
|
||||||
|
"width": 24,
|
||||||
|
"height": 26
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "06f13824-f9f6-47ca-8062-e50236229c6e"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/mingz_0.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
138
assets/resources/font/mingz_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "06f13824-f9f6-47ca-8062-e50236229c6e",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "06f13824-f9f6-47ca-8062-e50236229c6e@6c48a",
|
||||||
|
"displayName": "mingz_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "06f13824-f9f6-47ca-8062-e50236229c6e",
|
||||||
|
"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": "06f13824-f9f6-47ca-8062-e50236229c6e@f9941",
|
||||||
|
"displayName": "mingz_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -3.5,
|
||||||
|
"offsetY": 101.5,
|
||||||
|
"trimX": 1,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 247,
|
||||||
|
"height": 53,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-123.5,
|
||||||
|
-26.5,
|
||||||
|
0,
|
||||||
|
123.5,
|
||||||
|
-26.5,
|
||||||
|
0,
|
||||||
|
-123.5,
|
||||||
|
26.5,
|
||||||
|
0,
|
||||||
|
123.5,
|
||||||
|
26.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
1,
|
||||||
|
256,
|
||||||
|
248,
|
||||||
|
256,
|
||||||
|
1,
|
||||||
|
203,
|
||||||
|
248,
|
||||||
|
203
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.00390625,
|
||||||
|
0.79296875,
|
||||||
|
0.96875,
|
||||||
|
0.79296875,
|
||||||
|
0.00390625,
|
||||||
|
1,
|
||||||
|
0.96875,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-123.5,
|
||||||
|
-26.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
123.5,
|
||||||
|
26.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "06f13824-f9f6-47ca-8062-e50236229c6e@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "06f13824-f9f6-47ca-8062-e50236229c6e@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
assets/resources/font/txt_cltx.fnt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
info face="Arial" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=512 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
|
||||||
|
common lineHeight=164 base=134 scaleW=256 scaleH=256 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
|
||||||
|
page id=0 file="txt_cltx_0.png"
|
||||||
|
chars count=7
|
||||||
|
char id=67 x=0 y=0 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
||||||
|
char id=68 x=39 y=0 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
||||||
|
char id=73 x=78 y=0 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
||||||
|
char id=76 x=117 y=0 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
||||||
|
char id=77 x=156 y=0 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
||||||
|
char id=86 x=195 y=0 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
||||||
|
char id=88 x=0 y=57 width=38 height=56 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=15
|
99
assets/resources/font/txt_cltx.fnt.meta
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "48449f5c-b676-4e2e-85ba-c4be2450652b",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 164,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "txt_cltx_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"67": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
},
|
||||||
|
"68": {
|
||||||
|
"rect": {
|
||||||
|
"x": 39,
|
||||||
|
"y": 0,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
},
|
||||||
|
"73": {
|
||||||
|
"rect": {
|
||||||
|
"x": 78,
|
||||||
|
"y": 0,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
},
|
||||||
|
"76": {
|
||||||
|
"rect": {
|
||||||
|
"x": 117,
|
||||||
|
"y": 0,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
},
|
||||||
|
"77": {
|
||||||
|
"rect": {
|
||||||
|
"x": 156,
|
||||||
|
"y": 0,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
},
|
||||||
|
"86": {
|
||||||
|
"rect": {
|
||||||
|
"x": 195,
|
||||||
|
"y": 0,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
},
|
||||||
|
"88": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 57,
|
||||||
|
"width": 38,
|
||||||
|
"height": 56
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 38
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "71cf3958-f324-414a-8e4a-8d6b4792f420"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/txt_cltx_0.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
138
assets/resources/font/txt_cltx_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "71cf3958-f324-414a-8e4a-8d6b4792f420",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "71cf3958-f324-414a-8e4a-8d6b4792f420@6c48a",
|
||||||
|
"displayName": "txt_cltx_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "71cf3958-f324-414a-8e4a-8d6b4792f420",
|
||||||
|
"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": "71cf3958-f324-414a-8e4a-8d6b4792f420@f9941",
|
||||||
|
"displayName": "txt_cltx_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -11,
|
||||||
|
"offsetY": 72,
|
||||||
|
"trimX": 3,
|
||||||
|
"trimY": 1,
|
||||||
|
"width": 228,
|
||||||
|
"height": 110,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-114,
|
||||||
|
-55,
|
||||||
|
0,
|
||||||
|
114,
|
||||||
|
-55,
|
||||||
|
0,
|
||||||
|
-114,
|
||||||
|
55,
|
||||||
|
0,
|
||||||
|
114,
|
||||||
|
55,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
3,
|
||||||
|
255,
|
||||||
|
231,
|
||||||
|
255,
|
||||||
|
3,
|
||||||
|
145,
|
||||||
|
231,
|
||||||
|
145
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.01171875,
|
||||||
|
0.56640625,
|
||||||
|
0.90234375,
|
||||||
|
0.56640625,
|
||||||
|
0.01171875,
|
||||||
|
0.99609375,
|
||||||
|
0.90234375,
|
||||||
|
0.99609375
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-114,
|
||||||
|
-55,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
114,
|
||||||
|
55,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "71cf3958-f324-414a-8e4a-8d6b4792f420@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "71cf3958-f324-414a-8e4a-8d6b4792f420@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
20
assets/resources/font/xunlian.fnt
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<font>
|
||||||
|
<info face="Arial" size="32" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="1" aa="1" padding="0,0,0,0" spacing="1,1" outline="0"/>
|
||||||
|
<common lineHeight="32" base="26" scaleW="256" scaleH="256" pages="1" packed="0" alphaChnl="1" redChnl="0" greenChnl="0" blueChnl="0"/>
|
||||||
|
<pages>
|
||||||
|
<page id="0" file="xunlian_0.png" />
|
||||||
|
</pages>
|
||||||
|
<chars count="10">
|
||||||
|
<char id="48" x="0" y="37" width="24" height="36" xoffset="0" yoffset="0" xadvance="24" page="0" chnl="15" />
|
||||||
|
<char id="49" x="25" y="37" width="17" height="35" xoffset="0" yoffset="0" xadvance="17" page="0" chnl="15" />
|
||||||
|
<char id="50" x="0" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="51" x="31" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="52" x="62" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="53" x="93" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="54" x="124" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="55" x="155" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="56" x="186" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
<char id="57" x="217" y="0" width="30" height="36" xoffset="0" yoffset="0" xadvance="30" page="0" chnl="15" />
|
||||||
|
</chars>
|
||||||
|
</font>
|
132
assets/resources/font/xunlian.fnt.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "1d67d561-e0c0-43c5-80dc-78df6dfc9165",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 32,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "xunlian_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"48": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 37,
|
||||||
|
"width": 24,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 24
|
||||||
|
},
|
||||||
|
"49": {
|
||||||
|
"rect": {
|
||||||
|
"x": 25,
|
||||||
|
"y": 37,
|
||||||
|
"width": 17,
|
||||||
|
"height": 35
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 17
|
||||||
|
},
|
||||||
|
"50": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"rect": {
|
||||||
|
"x": 31,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"52": {
|
||||||
|
"rect": {
|
||||||
|
"x": 62,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"53": {
|
||||||
|
"rect": {
|
||||||
|
"x": 93,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"54": {
|
||||||
|
"rect": {
|
||||||
|
"x": 124,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"55": {
|
||||||
|
"rect": {
|
||||||
|
"x": 155,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"56": {
|
||||||
|
"rect": {
|
||||||
|
"x": 186,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
},
|
||||||
|
"57": {
|
||||||
|
"rect": {
|
||||||
|
"x": 217,
|
||||||
|
"y": 0,
|
||||||
|
"width": 30,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 30
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/xunlian_0.png
Normal file
After Width: | Height: | Size: 15 KiB |
138
assets/resources/font/xunlian_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894@6c48a",
|
||||||
|
"displayName": "xunlian_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894",
|
||||||
|
"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": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894@f9941",
|
||||||
|
"displayName": "xunlian_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -5.5,
|
||||||
|
"offsetY": 91.5,
|
||||||
|
"trimX": 0,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 245,
|
||||||
|
"height": 73,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-122.5,
|
||||||
|
-36.5,
|
||||||
|
0,
|
||||||
|
122.5,
|
||||||
|
-36.5,
|
||||||
|
0,
|
||||||
|
-122.5,
|
||||||
|
36.5,
|
||||||
|
0,
|
||||||
|
122.5,
|
||||||
|
36.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
0,
|
||||||
|
256,
|
||||||
|
245,
|
||||||
|
256,
|
||||||
|
0,
|
||||||
|
183,
|
||||||
|
245,
|
||||||
|
183
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0,
|
||||||
|
0.71484375,
|
||||||
|
0.95703125,
|
||||||
|
0.71484375,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
0.95703125,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-122.5,
|
||||||
|
-36.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
122.5,
|
||||||
|
36.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "fcedb98c-e4ff-4cd8-91e4-5ddef150e894@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
20
assets/resources/font/zhanli.fnt
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<font>
|
||||||
|
<info face="Arial" size="32" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="1" aa="1" padding="0,0,0,0" spacing="1,1" outline="0"/>
|
||||||
|
<common lineHeight="32" base="26" scaleW="256" scaleH="256" pages="1" packed="0" alphaChnl="1" redChnl="0" greenChnl="0" blueChnl="0"/>
|
||||||
|
<pages>
|
||||||
|
<page id="0" file="zhanli_0.png" />
|
||||||
|
</pages>
|
||||||
|
<chars count="10">
|
||||||
|
<char id="48" x="0" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="49" x="41" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="50" x="82" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="51" x="123" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="52" x="164" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="53" x="205" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="54" x="0" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="55" x="41" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="56" x="82" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="57" x="123" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
</chars>
|
||||||
|
</font>
|
132
assets/resources/font/zhanli.fnt.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "1bbf7e6c-8cd2-43e7-9172-12547563572d",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 32,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "zhanli_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"48": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"49": {
|
||||||
|
"rect": {
|
||||||
|
"x": 41,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"50": {
|
||||||
|
"rect": {
|
||||||
|
"x": 82,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"rect": {
|
||||||
|
"x": 123,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"52": {
|
||||||
|
"rect": {
|
||||||
|
"x": 164,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"53": {
|
||||||
|
"rect": {
|
||||||
|
"x": 205,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"54": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"55": {
|
||||||
|
"rect": {
|
||||||
|
"x": 41,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"56": {
|
||||||
|
"rect": {
|
||||||
|
"x": 82,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"57": {
|
||||||
|
"rect": {
|
||||||
|
"x": 123,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "94259420-e3b0-4867-84ab-c73e048bb5e5"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/zhanli_0.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
138
assets/resources/font/zhanli_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "94259420-e3b0-4867-84ab-c73e048bb5e5",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "94259420-e3b0-4867-84ab-c73e048bb5e5@6c48a",
|
||||||
|
"displayName": "zhanli_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "94259420-e3b0-4867-84ab-c73e048bb5e5",
|
||||||
|
"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": "94259420-e3b0-4867-84ab-c73e048bb5e5@f9941",
|
||||||
|
"displayName": "zhanli_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -5.5,
|
||||||
|
"offsetY": 75.5,
|
||||||
|
"trimX": 3,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 239,
|
||||||
|
"height": 105,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-119.5,
|
||||||
|
-52.5,
|
||||||
|
0,
|
||||||
|
119.5,
|
||||||
|
-52.5,
|
||||||
|
0,
|
||||||
|
-119.5,
|
||||||
|
52.5,
|
||||||
|
0,
|
||||||
|
119.5,
|
||||||
|
52.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
3,
|
||||||
|
256,
|
||||||
|
242,
|
||||||
|
256,
|
||||||
|
3,
|
||||||
|
151,
|
||||||
|
242,
|
||||||
|
151
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.01171875,
|
||||||
|
0.58984375,
|
||||||
|
0.9453125,
|
||||||
|
0.58984375,
|
||||||
|
0.01171875,
|
||||||
|
1,
|
||||||
|
0.9453125,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-119.5,
|
||||||
|
-52.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
119.5,
|
||||||
|
52.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "94259420-e3b0-4867-84ab-c73e048bb5e5@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "94259420-e3b0-4867-84ab-c73e048bb5e5@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
21
assets/resources/font/zhanli_jia.fnt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<font>
|
||||||
|
<info face="Arial" size="32" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="1" aa="1" padding="0,0,0,0" spacing="1,1" outline="0"/>
|
||||||
|
<common lineHeight="32" base="26" scaleW="256" scaleH="256" pages="1" packed="0" alphaChnl="1" redChnl="0" greenChnl="0" blueChnl="0"/>
|
||||||
|
<pages>
|
||||||
|
<page id="0" file="zhanli_jia_0.png" />
|
||||||
|
</pages>
|
||||||
|
<chars count="11">
|
||||||
|
<char id="43" x="0" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="48" x="41" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="49" x="82" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="50" x="123" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="51" x="164" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="52" x="205" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="53" x="0" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="54" x="41" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="55" x="82" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="56" x="123" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="57" x="164" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
</chars>
|
||||||
|
</font>
|
143
assets/resources/font/zhanli_jia.fnt.meta
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "4a2a3338-4741-4062-a445-c1f60686eefa",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 32,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "zhanli_jia_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"43": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"48": {
|
||||||
|
"rect": {
|
||||||
|
"x": 41,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"49": {
|
||||||
|
"rect": {
|
||||||
|
"x": 82,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"50": {
|
||||||
|
"rect": {
|
||||||
|
"x": 123,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"rect": {
|
||||||
|
"x": 164,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"52": {
|
||||||
|
"rect": {
|
||||||
|
"x": 205,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"53": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"54": {
|
||||||
|
"rect": {
|
||||||
|
"x": 41,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"55": {
|
||||||
|
"rect": {
|
||||||
|
"x": 82,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"56": {
|
||||||
|
"rect": {
|
||||||
|
"x": 123,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"57": {
|
||||||
|
"rect": {
|
||||||
|
"x": 164,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "2060b647-f960-49df-a898-6f4edc3bf84f"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/zhanli_jia_0.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
138
assets/resources/font/zhanli_jia_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "2060b647-f960-49df-a898-6f4edc3bf84f",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "2060b647-f960-49df-a898-6f4edc3bf84f@6c48a",
|
||||||
|
"displayName": "zhanli_jia_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "2060b647-f960-49df-a898-6f4edc3bf84f",
|
||||||
|
"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": "2060b647-f960-49df-a898-6f4edc3bf84f@f9941",
|
||||||
|
"displayName": "zhanli_jia_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -5.5,
|
||||||
|
"offsetY": 75.5,
|
||||||
|
"trimX": 3,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 239,
|
||||||
|
"height": 105,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-119.5,
|
||||||
|
-52.5,
|
||||||
|
0,
|
||||||
|
119.5,
|
||||||
|
-52.5,
|
||||||
|
0,
|
||||||
|
-119.5,
|
||||||
|
52.5,
|
||||||
|
0,
|
||||||
|
119.5,
|
||||||
|
52.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
3,
|
||||||
|
256,
|
||||||
|
242,
|
||||||
|
256,
|
||||||
|
3,
|
||||||
|
151,
|
||||||
|
242,
|
||||||
|
151
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.01171875,
|
||||||
|
0.58984375,
|
||||||
|
0.9453125,
|
||||||
|
0.58984375,
|
||||||
|
0.01171875,
|
||||||
|
1,
|
||||||
|
0.9453125,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-119.5,
|
||||||
|
-52.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
119.5,
|
||||||
|
52.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "2060b647-f960-49df-a898-6f4edc3bf84f@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "2060b647-f960-49df-a898-6f4edc3bf84f@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
21
assets/resources/font/zhanli_jian.fnt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<font>
|
||||||
|
<info face="Arial" size="32" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="1" aa="1" padding="0,0,0,0" spacing="1,1" outline="0"/>
|
||||||
|
<common lineHeight="32" base="26" scaleW="256" scaleH="256" pages="1" packed="0" alphaChnl="1" redChnl="0" greenChnl="0" blueChnl="0"/>
|
||||||
|
<pages>
|
||||||
|
<page id="0" file="zhanli_jian_0.png" />
|
||||||
|
</pages>
|
||||||
|
<chars count="11">
|
||||||
|
<char id="45" x="0" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="48" x="41" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="49" x="82" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="50" x="123" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="51" x="164" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="52" x="205" y="0" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="53" x="0" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="54" x="41" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="55" x="82" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="56" x="123" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
<char id="57" x="164" y="53" width="40" height="52" xoffset="0" yoffset="0" xadvance="40" page="0" chnl="15" />
|
||||||
|
</chars>
|
||||||
|
</font>
|
143
assets/resources/font/zhanli_jian.fnt.meta
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "cadbb3e2-1cac-4748-a60b-ce3564412a11",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 32,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "zhanli_jian_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"45": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"48": {
|
||||||
|
"rect": {
|
||||||
|
"x": 41,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"49": {
|
||||||
|
"rect": {
|
||||||
|
"x": 82,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"50": {
|
||||||
|
"rect": {
|
||||||
|
"x": 123,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"rect": {
|
||||||
|
"x": 164,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"52": {
|
||||||
|
"rect": {
|
||||||
|
"x": 205,
|
||||||
|
"y": 0,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"53": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"54": {
|
||||||
|
"rect": {
|
||||||
|
"x": 41,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"55": {
|
||||||
|
"rect": {
|
||||||
|
"x": 82,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"56": {
|
||||||
|
"rect": {
|
||||||
|
"x": 123,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
},
|
||||||
|
"57": {
|
||||||
|
"rect": {
|
||||||
|
"x": 164,
|
||||||
|
"y": 53,
|
||||||
|
"width": 40,
|
||||||
|
"height": 52
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 40
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/zhanli_jian_0.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
138
assets/resources/font/zhanli_jian_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a@6c48a",
|
||||||
|
"displayName": "zhanli_jian_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a",
|
||||||
|
"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": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a@f9941",
|
||||||
|
"displayName": "zhanli_jian_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -4.5,
|
||||||
|
"offsetY": 75.5,
|
||||||
|
"trimX": 4,
|
||||||
|
"trimY": 0,
|
||||||
|
"width": 239,
|
||||||
|
"height": 105,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-119.5,
|
||||||
|
-52.5,
|
||||||
|
0,
|
||||||
|
119.5,
|
||||||
|
-52.5,
|
||||||
|
0,
|
||||||
|
-119.5,
|
||||||
|
52.5,
|
||||||
|
0,
|
||||||
|
119.5,
|
||||||
|
52.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
4,
|
||||||
|
256,
|
||||||
|
243,
|
||||||
|
256,
|
||||||
|
4,
|
||||||
|
151,
|
||||||
|
243,
|
||||||
|
151
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.015625,
|
||||||
|
0.58984375,
|
||||||
|
0.94921875,
|
||||||
|
0.58984375,
|
||||||
|
0.015625,
|
||||||
|
1,
|
||||||
|
0.94921875,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-119.5,
|
||||||
|
-52.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
119.5,
|
||||||
|
52.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "5dfe22a6-7e25-4bea-843e-f1654eb67a0a@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
20
assets/resources/font/zongshanghai.fnt
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<font>
|
||||||
|
<info face="Arial" size="32" bold="0" italic="0" charset="" unicode="1" stretchH="100" smooth="1" aa="1" padding="0,0,0,0" spacing="1,1" outline="0"/>
|
||||||
|
<common lineHeight="32" base="26" scaleW="256" scaleH="256" pages="1" packed="0" alphaChnl="1" redChnl="0" greenChnl="0" blueChnl="0"/>
|
||||||
|
<pages>
|
||||||
|
<page id="0" file="zongshanghai_0.png" />
|
||||||
|
</pages>
|
||||||
|
<chars count="10">
|
||||||
|
<char id="48" x="0" y="0" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="49" x="45" y="0" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="50" x="90" y="0" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="51" x="135" y="0" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="52" x="180" y="0" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="53" x="0" y="51" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="54" x="45" y="51" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="55" x="90" y="51" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="56" x="135" y="51" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
<char id="57" x="180" y="51" width="44" height="50" xoffset="0" yoffset="0" xadvance="44" page="0" chnl="15" />
|
||||||
|
</chars>
|
||||||
|
</font>
|
132
assets/resources/font/zongshanghai.fnt.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.6",
|
||||||
|
"importer": "bitmap-font",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "46ad90e8-2028-4c58-8cc1-5f9c48cec294",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"_fntConfig": {
|
||||||
|
"commonHeight": 32,
|
||||||
|
"fontSize": 32,
|
||||||
|
"atlasName": "zongshanghai_0.png",
|
||||||
|
"fontDefDictionary": {
|
||||||
|
"48": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"49": {
|
||||||
|
"rect": {
|
||||||
|
"x": 45,
|
||||||
|
"y": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"50": {
|
||||||
|
"rect": {
|
||||||
|
"x": 90,
|
||||||
|
"y": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"rect": {
|
||||||
|
"x": 135,
|
||||||
|
"y": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"52": {
|
||||||
|
"rect": {
|
||||||
|
"x": 180,
|
||||||
|
"y": 0,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"53": {
|
||||||
|
"rect": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 51,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"54": {
|
||||||
|
"rect": {
|
||||||
|
"x": 45,
|
||||||
|
"y": 51,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"55": {
|
||||||
|
"rect": {
|
||||||
|
"x": 90,
|
||||||
|
"y": 51,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"56": {
|
||||||
|
"rect": {
|
||||||
|
"x": 135,
|
||||||
|
"y": 51,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
},
|
||||||
|
"57": {
|
||||||
|
"rect": {
|
||||||
|
"x": 180,
|
||||||
|
"y": 51,
|
||||||
|
"width": 44,
|
||||||
|
"height": 50
|
||||||
|
},
|
||||||
|
"xOffset": 0,
|
||||||
|
"yOffset": 0,
|
||||||
|
"xAdvance": 44
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kerningDict": {}
|
||||||
|
},
|
||||||
|
"fontSize": 32,
|
||||||
|
"textureUuid": "b89c726d-986f-4fa6-bf43-8aae465f5721"
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/font/zongshanghai_0.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
138
assets/resources/font/zongshanghai_0.png.meta
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.25",
|
||||||
|
"importer": "image",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "b89c726d-986f-4fa6-bf43-8aae465f5721",
|
||||||
|
"files": [
|
||||||
|
".json",
|
||||||
|
".png"
|
||||||
|
],
|
||||||
|
"subMetas": {
|
||||||
|
"6c48a": {
|
||||||
|
"importer": "texture",
|
||||||
|
"uuid": "b89c726d-986f-4fa6-bf43-8aae465f5721@6c48a",
|
||||||
|
"displayName": "zongshanghai_0",
|
||||||
|
"id": "6c48a",
|
||||||
|
"name": "texture",
|
||||||
|
"userData": {
|
||||||
|
"wrapModeS": "clamp-to-edge",
|
||||||
|
"wrapModeT": "clamp-to-edge",
|
||||||
|
"imageUuidOrDatabaseUri": "b89c726d-986f-4fa6-bf43-8aae465f5721",
|
||||||
|
"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": "b89c726d-986f-4fa6-bf43-8aae465f5721@f9941",
|
||||||
|
"displayName": "zongshanghai_0",
|
||||||
|
"id": "f9941",
|
||||||
|
"name": "spriteFrame",
|
||||||
|
"userData": {
|
||||||
|
"trimType": "auto",
|
||||||
|
"trimThreshold": 1,
|
||||||
|
"rotated": false,
|
||||||
|
"offsetX": -15.5,
|
||||||
|
"offsetY": 77.5,
|
||||||
|
"trimX": 8,
|
||||||
|
"trimY": 2,
|
||||||
|
"width": 209,
|
||||||
|
"height": 97,
|
||||||
|
"rawWidth": 256,
|
||||||
|
"rawHeight": 256,
|
||||||
|
"borderTop": 0,
|
||||||
|
"borderBottom": 0,
|
||||||
|
"borderLeft": 0,
|
||||||
|
"borderRight": 0,
|
||||||
|
"packable": true,
|
||||||
|
"pixelsToUnit": 100,
|
||||||
|
"pivotX": 0.5,
|
||||||
|
"pivotY": 0.5,
|
||||||
|
"meshType": 0,
|
||||||
|
"vertices": {
|
||||||
|
"rawPosition": [
|
||||||
|
-104.5,
|
||||||
|
-48.5,
|
||||||
|
0,
|
||||||
|
104.5,
|
||||||
|
-48.5,
|
||||||
|
0,
|
||||||
|
-104.5,
|
||||||
|
48.5,
|
||||||
|
0,
|
||||||
|
104.5,
|
||||||
|
48.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"indexes": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"uv": [
|
||||||
|
8,
|
||||||
|
254,
|
||||||
|
217,
|
||||||
|
254,
|
||||||
|
8,
|
||||||
|
157,
|
||||||
|
217,
|
||||||
|
157
|
||||||
|
],
|
||||||
|
"nuv": [
|
||||||
|
0.03125,
|
||||||
|
0.61328125,
|
||||||
|
0.84765625,
|
||||||
|
0.61328125,
|
||||||
|
0.03125,
|
||||||
|
0.9921875,
|
||||||
|
0.84765625,
|
||||||
|
0.9921875
|
||||||
|
],
|
||||||
|
"minPos": [
|
||||||
|
-104.5,
|
||||||
|
-48.5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"maxPos": [
|
||||||
|
104.5,
|
||||||
|
48.5,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"isUuid": true,
|
||||||
|
"imageUuidOrDatabaseUri": "b89c726d-986f-4fa6-bf43-8aae465f5721@6c48a",
|
||||||
|
"atlasUuid": ""
|
||||||
|
},
|
||||||
|
"ver": "1.0.11",
|
||||||
|
"imported": true,
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"userData": {
|
||||||
|
"type": "sprite-frame",
|
||||||
|
"fixAlphaTransparencyArtifacts": true,
|
||||||
|
"hasAlpha": true,
|
||||||
|
"redirect": "b89c726d-986f-4fa6-bf43-8aae465f5721@f9941",
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
12
assets/resources/il8n.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "09f61e47-d9d4-4504-bbf7-93995b12cc54",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
10239
assets/resources/il8n/en.json
Normal file
11
assets/resources/il8n/en.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "9c4dae95-35da-4938-a38f-f35ff467aa4d",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
10239
assets/resources/il8n/ja.json
Normal file
11
assets/resources/il8n/ja.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "7ce29152-9994-4765-b4e3-6eb51674b661",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
10221
assets/resources/il8n/kr.json
Normal file
11
assets/resources/il8n/kr.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "9b4600be-f08b-410e-b161-bf38b87a3769",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
10239
assets/resources/il8n/tw.json
Normal file
11
assets/resources/il8n/tw.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "ce699658-7be0-4212-ae7d-a9eabf7f3392",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
9983
assets/resources/il8n/zh.json
Normal file
11
assets/resources/il8n/zh.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "abc2ad30-c371-4421-bd93-fda2355fb9e4",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
12
assets/resources/img.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "ba15df95-5dd8-425a-9af9-85619de66ad5",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
12
assets/resources/img/anniu.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.1.0",
|
||||||
|
"importer": "directory",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "2530d175-3bdf-4dfe-a53d-cd6cc022148b",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"compressionType": {},
|
||||||
|
"isRemoteBundle": {}
|
||||||
|
}
|
||||||
|
}
|
3
assets/resources/img/anniu/anniu.pac
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"__type__": "cc.SpriteAtlas"
|
||||||
|
}
|
39
assets/resources/img/anniu/anniu.pac.meta
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.8",
|
||||||
|
"importer": "auto-atlas",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "6cc6e9fd-a045-4fac-b8fa-ab5ad5e91c4c",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {
|
||||||
|
"maxWidth": 1024,
|
||||||
|
"maxHeight": 1024,
|
||||||
|
"padding": 2,
|
||||||
|
"allowRotation": true,
|
||||||
|
"forceSquared": false,
|
||||||
|
"powerOfTwo": false,
|
||||||
|
"algorithm": "MaxRects",
|
||||||
|
"format": "png",
|
||||||
|
"quality": 80,
|
||||||
|
"contourBleed": true,
|
||||||
|
"paddingBleed": true,
|
||||||
|
"filterUnused": true,
|
||||||
|
"removeTextureInBundle": true,
|
||||||
|
"removeImageInBundle": true,
|
||||||
|
"removeSpriteAtlasInBundle": true,
|
||||||
|
"compressSettings": {
|
||||||
|
"useCompressTexture": true,
|
||||||
|
"presetId": "e6sm5y64VBR6/bYxQLg7Ja"
|
||||||
|
},
|
||||||
|
"textureSetting": {
|
||||||
|
"wrapModeS": "repeat",
|
||||||
|
"wrapModeT": "repeat",
|
||||||
|
"minfilter": "linear",
|
||||||
|
"magfilter": "linear",
|
||||||
|
"mipfilter": "none",
|
||||||
|
"anisotropy": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
assets/resources/img/anniu/bb_btn_dj.png
Normal file
After Width: | Height: | Size: 5.5 KiB |