mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
提交配置表
This commit is contained in:
parent
074cfbd5bd
commit
5ab90ea221
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
DataTables/Datas/战斗/角色/升级/角色升星消耗表.xlsx
Normal file
BIN
DataTables/Datas/战斗/角色/升级/角色升星消耗表.xlsx
Normal file
Binary file not shown.
BIN
DataTables/Datas/战斗/角色/升级/角色升级消耗表.xlsx
Normal file
BIN
DataTables/Datas/战斗/角色/升级/角色升级消耗表.xlsx
Normal file
Binary file not shown.
@ -342,6 +342,90 @@ export class TbGResource {
|
||||
}
|
||||
|
||||
|
||||
export namespace TB {
|
||||
export class TbGRoleCUp {
|
||||
|
||||
constructor(_json_: any) {
|
||||
if (_json_.grade === undefined) { throw new Error() }
|
||||
this.grade = _json_.grade
|
||||
if (_json_.materials === undefined) { throw new Error() }
|
||||
{ this.materials = []; for(let _ele of _json_.materials) { let _e; _e = new TbGEntity.Resource(_ele); this.materials.push(_e);}}
|
||||
}
|
||||
|
||||
/**
|
||||
* 宠物等级
|
||||
*/
|
||||
readonly grade: number
|
||||
/**
|
||||
* 消耗的材料
|
||||
*/
|
||||
readonly materials: TbGEntity.Resource[]
|
||||
|
||||
resolve(tables:Tables)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
export namespace TbGEntity {
|
||||
/**
|
||||
* 资源信息
|
||||
*/
|
||||
export class Resource {
|
||||
|
||||
constructor(_json_: any) {
|
||||
if (_json_.id === undefined) { throw new Error() }
|
||||
this.id = _json_.id
|
||||
if (_json_.value === undefined) { throw new Error() }
|
||||
this.value = _json_.value
|
||||
}
|
||||
|
||||
/**
|
||||
* 资源Id
|
||||
*/
|
||||
readonly id: number
|
||||
/**
|
||||
* 资源数量
|
||||
*/
|
||||
readonly value: number
|
||||
|
||||
resolve(tables:Tables)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
export namespace TB {
|
||||
export class TbGRoleCStar {
|
||||
|
||||
constructor(_json_: any) {
|
||||
if (_json_.grade === undefined) { throw new Error() }
|
||||
this.grade = _json_.grade
|
||||
if (_json_.merge === undefined) { throw new Error() }
|
||||
this.merge = _json_.merge
|
||||
}
|
||||
|
||||
/**
|
||||
* 宠物星级
|
||||
*/
|
||||
readonly grade: number
|
||||
/**
|
||||
* 合成数量
|
||||
*/
|
||||
readonly merge: number
|
||||
|
||||
resolve(tables:Tables)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
export class TbGGlobal{
|
||||
@ -600,6 +684,70 @@ export class TbGResource{
|
||||
|
||||
|
||||
|
||||
export class TbGRoleCUp{
|
||||
private _dataMap: Map<number, TB.TbGRoleCUp>
|
||||
private _dataList: TB.TbGRoleCUp[]
|
||||
constructor(_json_: any) {
|
||||
this._dataMap = new Map<number, TB.TbGRoleCUp>()
|
||||
this._dataList = []
|
||||
for(var _json2_ of _json_) {
|
||||
let _v: TB.TbGRoleCUp
|
||||
_v = new TB.TbGRoleCUp(_json2_)
|
||||
this._dataList.push(_v)
|
||||
this._dataMap.set(_v.grade, _v)
|
||||
}
|
||||
}
|
||||
|
||||
getDataMap(): Map<number, TB.TbGRoleCUp> { return this._dataMap; }
|
||||
getDataList(): TB.TbGRoleCUp[] { return this._dataList; }
|
||||
|
||||
get(key: number): TB.TbGRoleCUp | undefined { return this._dataMap.get(key); }
|
||||
|
||||
resolve(tables:Tables)
|
||||
{
|
||||
for(let data of this._dataList)
|
||||
{
|
||||
data.resolve(tables)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
export class TbGRoleCStar{
|
||||
private _dataMap: Map<number, TB.TbGRoleCStar>
|
||||
private _dataList: TB.TbGRoleCStar[]
|
||||
constructor(_json_: any) {
|
||||
this._dataMap = new Map<number, TB.TbGRoleCStar>()
|
||||
this._dataList = []
|
||||
for(var _json2_ of _json_) {
|
||||
let _v: TB.TbGRoleCStar
|
||||
_v = new TB.TbGRoleCStar(_json2_)
|
||||
this._dataList.push(_v)
|
||||
this._dataMap.set(_v.grade, _v)
|
||||
}
|
||||
}
|
||||
|
||||
getDataMap(): Map<number, TB.TbGRoleCStar> { return this._dataMap; }
|
||||
getDataList(): TB.TbGRoleCStar[] { return this._dataList; }
|
||||
|
||||
get(key: number): TB.TbGRoleCStar | undefined { return this._dataMap.get(key); }
|
||||
|
||||
resolve(tables:Tables)
|
||||
{
|
||||
for(let data of this._dataList)
|
||||
{
|
||||
data.resolve(tables)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
type JsonLoader = (file: string) => any
|
||||
|
||||
export class Tables {
|
||||
@ -619,6 +767,10 @@ export class Tables {
|
||||
get TbGOnHookGlobal(): TbGOnHookGlobal { return this._TbGOnHookGlobal;}
|
||||
private _TbGResource: TbGResource
|
||||
get TbGResource(): TbGResource { return this._TbGResource;}
|
||||
private _TbGRoleCUp: TbGRoleCUp
|
||||
get TbGRoleCUp(): TbGRoleCUp { return this._TbGRoleCUp;}
|
||||
private _TbGRoleCStar: TbGRoleCStar
|
||||
get TbGRoleCStar(): TbGRoleCStar { return this._TbGRoleCStar;}
|
||||
|
||||
constructor(loader: JsonLoader) {
|
||||
this._TbGGlobal = new TbGGlobal(loader('tbgglobal'))
|
||||
@ -629,6 +781,8 @@ export class Tables {
|
||||
this._TbGMap = new TbGMap(loader('tbgmap'))
|
||||
this._TbGOnHookGlobal = new TbGOnHookGlobal(loader('tbgonhookglobal'))
|
||||
this._TbGResource = new TbGResource(loader('tbgresource'))
|
||||
this._TbGRoleCUp = new TbGRoleCUp(loader('tbgrolecup'))
|
||||
this._TbGRoleCStar = new TbGRoleCStar(loader('tbgrolecstar'))
|
||||
|
||||
this._TbGGlobal.resolve(this)
|
||||
this._TbGRole.resolve(this)
|
||||
@ -638,5 +792,7 @@ export class Tables {
|
||||
this._TbGMap.resolve(this)
|
||||
this._TbGOnHookGlobal.resolve(this)
|
||||
this._TbGResource.resolve(this)
|
||||
this._TbGRoleCUp.resolve(this)
|
||||
this._TbGRoleCStar.resolve(this)
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,42 @@
|
||||
[
|
||||
{
|
||||
"grade": 1,
|
||||
"merge": 1
|
||||
},
|
||||
{
|
||||
"grade": 2,
|
||||
"merge": 2
|
||||
},
|
||||
{
|
||||
"grade": 3,
|
||||
"merge": 4
|
||||
},
|
||||
{
|
||||
"grade": 4,
|
||||
"merge": 8
|
||||
},
|
||||
{
|
||||
"grade": 5,
|
||||
"merge": 16
|
||||
},
|
||||
{
|
||||
"grade": 6,
|
||||
"merge": 32
|
||||
},
|
||||
{
|
||||
"grade": 7,
|
||||
"merge": 64
|
||||
},
|
||||
{
|
||||
"grade": 8,
|
||||
"merge": 128
|
||||
},
|
||||
{
|
||||
"grade": 9,
|
||||
"merge": 256
|
||||
},
|
||||
{
|
||||
"grade": 10,
|
||||
"merge": 512
|
||||
}
|
||||
]
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"ver": "2.0.1",
|
||||
"importer": "json",
|
||||
"imported": true,
|
||||
"uuid": "580aaa0b-8b26-4bc6-9abe-6984e9980679",
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {},
|
||||
"userData": {}
|
||||
}
|
902
JisolGameCocos/assets/resources/config/json/tbgrolecup.json
Normal file
902
JisolGameCocos/assets/resources/config/json/tbgrolecup.json
Normal file
@ -0,0 +1,902 @@
|
||||
[
|
||||
{
|
||||
"grade": 1,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 2,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 3,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 4,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 1600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 5,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 2500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 6,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 3600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 7,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 4900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 8,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 6400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 9,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 8100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 10,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 10000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 11,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 12100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 12,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 14400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 13,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 16900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 14,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 19600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 15,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 22500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 16,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 25600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 17,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 28900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 18,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 32400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 19,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 36100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 20,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 40000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 21,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 44100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 22,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 48400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 23,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 52900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 24,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 57600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 25,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 62500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 26,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 67600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 27,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 72900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 28,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 78400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 29,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 84100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 30,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 90000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 31,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 96100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 32,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 102400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 33,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 108900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 34,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 115600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 35,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 122500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 36,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 129600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 37,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 136900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 38,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 144400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 39,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 152100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 40,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 160000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 41,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 168100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 42,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 176400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 43,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 184900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 44,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 193600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 45,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 202500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 46,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 211600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 47,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 220900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 48,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 230400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 49,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 240100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 50,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 250000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 51,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 260100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 52,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 270400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 53,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 280900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 54,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 291600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 55,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 302500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 56,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 313600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 57,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 324900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 58,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 336400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 59,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 348100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 60,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 360000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 61,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 372100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 62,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 384400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 63,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 396900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 64,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 409600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 65,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 422500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 66,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 435600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 67,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 448900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 68,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 462400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 69,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 476100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 70,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 490000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 71,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 504100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 72,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 518400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 73,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 532900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 74,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 547600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 75,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 562500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 76,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 577600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 77,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 592900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 78,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 608400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 79,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 624100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 80,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 640000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 81,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 656100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 82,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 672400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 83,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 688900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 84,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 705600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 85,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 722500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 86,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 739600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 87,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 756900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 88,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 774400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 89,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 792100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 90,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 810000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 91,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 828100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 92,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 846400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 93,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 864900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 94,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 883600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 95,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 902500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 96,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 921600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 97,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 940900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 98,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 960400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 99,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 980100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 100,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 1000000
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"ver": "2.0.1",
|
||||
"importer": "json",
|
||||
"imported": true,
|
||||
"uuid": "dfe67d28-0f19-440b-ad19-7c1f70b3528b",
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {},
|
||||
"userData": {}
|
||||
}
|
@ -5,8 +5,8 @@
|
||||
"skillController": "GSkillCrazySquirrel",
|
||||
"skillArgs": [
|
||||
"5",
|
||||
"250",
|
||||
"250"
|
||||
"300",
|
||||
"300"
|
||||
],
|
||||
"skillText": "疯狂松鼠的技能 丢出巨大炸弹 轰炸全部玩家"
|
||||
},
|
||||
|
@ -40,7 +40,7 @@
|
||||
"_lpos": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": -1280,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_lrot": {
|
||||
@ -2973,8 +2973,8 @@
|
||||
"_target": null,
|
||||
"_left": 0,
|
||||
"_right": 0,
|
||||
"_top": 1280,
|
||||
"_bottom": -1280,
|
||||
"_top": 0,
|
||||
"_bottom": 0,
|
||||
"_horizontalCenter": 0,
|
||||
"_verticalCenter": 0,
|
||||
"_isAbsLeft": true,
|
||||
|
@ -26,10 +26,10 @@ import { JAPI, JAPIConfig } from "../../extensions/ngame/assets/ngame/util/JAPI"
|
||||
import { AppData } from "./AppData";
|
||||
import AppAction from "./AppAction";
|
||||
|
||||
let APIPath = `http://localhost:8080`
|
||||
let WsPath = `ws://localhost:8080/websocket`
|
||||
// let APIPath = `http://192.168.0.123:8080`
|
||||
// let WsPath = `ws://192.168.0.123:8080/websocket`
|
||||
// let APIPath = `http://localhost:8080`
|
||||
// let WsPath = `ws://localhost:8080/websocket`
|
||||
let APIPath = `http://192.168.0.174:8080`
|
||||
let WsPath = `ws://192.168.0.174:8080/websocket`
|
||||
// let APIPath = `https://api.pet.jisol.cn`
|
||||
// let WsPath = `wss://api.pet.jisol.cn/websocket`
|
||||
|
||||
|
@ -5,6 +5,7 @@ import { GUI } from "../UIConfig";
|
||||
import NoviceManager from "../../manager/NoviceManager";
|
||||
import { JNGLayerBase } from "../../components/JNComponent";
|
||||
import { app } from "../../App";
|
||||
import { lerp } from "cc";
|
||||
const { ccclass, property } = _decorator;
|
||||
|
||||
@ccclass('LoadingView')
|
||||
@ -22,7 +23,7 @@ export default class LoadingView extends JNGLayerBase {
|
||||
update(dt:number){
|
||||
if(app.loading.getCurrentInfo())
|
||||
this.label.string = app.loading.getCurrentInfo().title;
|
||||
this.progress.progress = app.loading.progress();
|
||||
this.progress.progress = lerp(this.progress.progress,app.loading.progress(),dt);
|
||||
if(!this.isOk && app.loading.isAllSuccess()){
|
||||
this.isOk = true;
|
||||
this.onSuccess();
|
||||
|
49
JisolGameServer/Main/src/main/java/cfg/TB/TbGRoleCStar.java
Normal file
49
JisolGameServer/Main/src/main/java/cfg/TB/TbGRoleCStar.java
Normal file
@ -0,0 +1,49 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
package cfg.TB;
|
||||
|
||||
import luban.*;
|
||||
import com.google.gson.JsonElement;
|
||||
import com.google.gson.JsonObject;
|
||||
|
||||
|
||||
public final class TbGRoleCStar extends AbstractBean {
|
||||
public TbGRoleCStar(JsonObject _buf) {
|
||||
grade = _buf.get("grade").getAsInt();
|
||||
merge = _buf.get("merge").getAsInt();
|
||||
}
|
||||
|
||||
public static TbGRoleCStar deserialize(JsonObject _buf) {
|
||||
return new cfg.TB.TbGRoleCStar(_buf);
|
||||
}
|
||||
|
||||
/**
|
||||
* 宠物星级
|
||||
*/
|
||||
public final int grade;
|
||||
/**
|
||||
* 合成数量
|
||||
*/
|
||||
public final int merge;
|
||||
|
||||
public static final int __ID__ = 1657613958;
|
||||
|
||||
@Override
|
||||
public int getTypeId() { return __ID__; }
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "{ "
|
||||
+ "(format_field_name __code_style field.name):" + grade + ","
|
||||
+ "(format_field_name __code_style field.name):" + merge + ","
|
||||
+ "}";
|
||||
}
|
||||
}
|
||||
|
49
JisolGameServer/Main/src/main/java/cfg/TB/TbGRoleCUp.java
Normal file
49
JisolGameServer/Main/src/main/java/cfg/TB/TbGRoleCUp.java
Normal file
@ -0,0 +1,49 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
package cfg.TB;
|
||||
|
||||
import luban.*;
|
||||
import com.google.gson.JsonElement;
|
||||
import com.google.gson.JsonObject;
|
||||
|
||||
|
||||
public final class TbGRoleCUp extends AbstractBean {
|
||||
public TbGRoleCUp(JsonObject _buf) {
|
||||
grade = _buf.get("grade").getAsInt();
|
||||
{ com.google.gson.JsonArray _json0_ = _buf.get("materials").getAsJsonArray(); int __n0 = _json0_.size(); materials = new cfg.TbGEntity.Resource[__n0]; int __index0=0; for(JsonElement __e0 : _json0_) { cfg.TbGEntity.Resource __v0; __v0 = cfg.TbGEntity.Resource.deserialize(__e0.getAsJsonObject()); materials[__index0++] = __v0; } }
|
||||
}
|
||||
|
||||
public static TbGRoleCUp deserialize(JsonObject _buf) {
|
||||
return new cfg.TB.TbGRoleCUp(_buf);
|
||||
}
|
||||
|
||||
/**
|
||||
* 宠物等级
|
||||
*/
|
||||
public final int grade;
|
||||
/**
|
||||
* 消耗的材料
|
||||
*/
|
||||
public final cfg.TbGEntity.Resource[] materials;
|
||||
|
||||
public static final int __ID__ = 1860940751;
|
||||
|
||||
@Override
|
||||
public int getTypeId() { return __ID__; }
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "{ "
|
||||
+ "(format_field_name __code_style field.name):" + grade + ","
|
||||
+ "(format_field_name __code_style field.name):" + materials + ","
|
||||
+ "}";
|
||||
}
|
||||
}
|
||||
|
@ -35,6 +35,10 @@ public final class Tables
|
||||
public cfg.TbGOnHookGlobal getTbGOnHookGlobal() { return _tbgonhookglobal; }
|
||||
private final cfg.TbGResource _tbgresource;
|
||||
public cfg.TbGResource getTbGResource() { return _tbgresource; }
|
||||
private final cfg.TbGRoleCUp _tbgrolecup;
|
||||
public cfg.TbGRoleCUp getTbGRoleCUp() { return _tbgrolecup; }
|
||||
private final cfg.TbGRoleCStar _tbgrolecstar;
|
||||
public cfg.TbGRoleCStar getTbGRoleCStar() { return _tbgrolecstar; }
|
||||
|
||||
public Tables(IJsonLoader loader) throws java.io.IOException {
|
||||
_tbgglobal = new cfg.TbGGlobal(loader.load("tbgglobal"));
|
||||
@ -45,6 +49,8 @@ public final class Tables
|
||||
_tbgmap = new cfg.TbGMap(loader.load("tbgmap"));
|
||||
_tbgonhookglobal = new cfg.TbGOnHookGlobal(loader.load("tbgonhookglobal"));
|
||||
_tbgresource = new cfg.TbGResource(loader.load("tbgresource"));
|
||||
_tbgrolecup = new cfg.TbGRoleCUp(loader.load("tbgrolecup"));
|
||||
_tbgrolecstar = new cfg.TbGRoleCStar(loader.load("tbgrolecstar"));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,52 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
package cfg.TbGEntity;
|
||||
|
||||
import luban.*;
|
||||
import com.google.gson.JsonElement;
|
||||
import com.google.gson.JsonObject;
|
||||
|
||||
|
||||
/**
|
||||
* 资源信息
|
||||
*/
|
||||
public final class Resource extends AbstractBean {
|
||||
public Resource(JsonObject _buf) {
|
||||
id = _buf.get("id").getAsInt();
|
||||
value = _buf.get("value").getAsInt();
|
||||
}
|
||||
|
||||
public static Resource deserialize(JsonObject _buf) {
|
||||
return new cfg.TbGEntity.Resource(_buf);
|
||||
}
|
||||
|
||||
/**
|
||||
* 资源Id
|
||||
*/
|
||||
public final int id;
|
||||
/**
|
||||
* 资源数量
|
||||
*/
|
||||
public final int value;
|
||||
|
||||
public static final int __ID__ = -215001824;
|
||||
|
||||
@Override
|
||||
public int getTypeId() { return __ID__; }
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "{ "
|
||||
+ "(format_field_name __code_style field.name):" + id + ","
|
||||
+ "(format_field_name __code_style field.name):" + value + ","
|
||||
+ "}";
|
||||
}
|
||||
}
|
||||
|
37
JisolGameServer/Main/src/main/java/cfg/TbGRoleCStar.java
Normal file
37
JisolGameServer/Main/src/main/java/cfg/TbGRoleCStar.java
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
package cfg;
|
||||
|
||||
import luban.*;
|
||||
import com.google.gson.JsonElement;
|
||||
|
||||
|
||||
public final class TbGRoleCStar {
|
||||
private final java.util.HashMap<Integer, cfg.TB.TbGRoleCStar> _dataMap;
|
||||
private final java.util.ArrayList<cfg.TB.TbGRoleCStar> _dataList;
|
||||
|
||||
public TbGRoleCStar(JsonElement _buf) {
|
||||
_dataMap = new java.util.HashMap<Integer, cfg.TB.TbGRoleCStar>();
|
||||
_dataList = new java.util.ArrayList<cfg.TB.TbGRoleCStar>();
|
||||
|
||||
for (com.google.gson.JsonElement _e_ : _buf.getAsJsonArray()) {
|
||||
cfg.TB.TbGRoleCStar _v;
|
||||
_v = cfg.TB.TbGRoleCStar.deserialize(_e_.getAsJsonObject());
|
||||
_dataList.add(_v);
|
||||
_dataMap.put(_v.grade, _v);
|
||||
}
|
||||
}
|
||||
|
||||
public java.util.HashMap<Integer, cfg.TB.TbGRoleCStar> getDataMap() { return _dataMap; }
|
||||
public java.util.ArrayList<cfg.TB.TbGRoleCStar> getDataList() { return _dataList; }
|
||||
|
||||
public cfg.TB.TbGRoleCStar get(int key) { return _dataMap.get(key); }
|
||||
|
||||
}
|
37
JisolGameServer/Main/src/main/java/cfg/TbGRoleCUp.java
Normal file
37
JisolGameServer/Main/src/main/java/cfg/TbGRoleCUp.java
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
package cfg;
|
||||
|
||||
import luban.*;
|
||||
import com.google.gson.JsonElement;
|
||||
|
||||
|
||||
public final class TbGRoleCUp {
|
||||
private final java.util.HashMap<Integer, cfg.TB.TbGRoleCUp> _dataMap;
|
||||
private final java.util.ArrayList<cfg.TB.TbGRoleCUp> _dataList;
|
||||
|
||||
public TbGRoleCUp(JsonElement _buf) {
|
||||
_dataMap = new java.util.HashMap<Integer, cfg.TB.TbGRoleCUp>();
|
||||
_dataList = new java.util.ArrayList<cfg.TB.TbGRoleCUp>();
|
||||
|
||||
for (com.google.gson.JsonElement _e_ : _buf.getAsJsonArray()) {
|
||||
cfg.TB.TbGRoleCUp _v;
|
||||
_v = cfg.TB.TbGRoleCUp.deserialize(_e_.getAsJsonObject());
|
||||
_dataList.add(_v);
|
||||
_dataMap.put(_v.grade, _v);
|
||||
}
|
||||
}
|
||||
|
||||
public java.util.HashMap<Integer, cfg.TB.TbGRoleCUp> getDataMap() { return _dataMap; }
|
||||
public java.util.ArrayList<cfg.TB.TbGRoleCUp> getDataList() { return _dataList; }
|
||||
|
||||
public cfg.TB.TbGRoleCUp get(int key) { return _dataMap.get(key); }
|
||||
|
||||
}
|
@ -137,6 +137,7 @@ public class GPVPAction {
|
||||
client2.invoke(GActionEnum.C_MODE_PVP_END_WAIT);
|
||||
|
||||
GPVPMessage.GPVPStart info = builder.build();
|
||||
|
||||
//PVP 开始
|
||||
client1.invoke(GActionEnum.C_MODE_PVP_START, info);
|
||||
client2.invoke(GActionEnum.C_MODE_PVP_START, info);
|
||||
|
@ -0,0 +1,42 @@
|
||||
[
|
||||
{
|
||||
"grade": 1,
|
||||
"merge": 1
|
||||
},
|
||||
{
|
||||
"grade": 2,
|
||||
"merge": 2
|
||||
},
|
||||
{
|
||||
"grade": 3,
|
||||
"merge": 4
|
||||
},
|
||||
{
|
||||
"grade": 4,
|
||||
"merge": 8
|
||||
},
|
||||
{
|
||||
"grade": 5,
|
||||
"merge": 16
|
||||
},
|
||||
{
|
||||
"grade": 6,
|
||||
"merge": 32
|
||||
},
|
||||
{
|
||||
"grade": 7,
|
||||
"merge": 64
|
||||
},
|
||||
{
|
||||
"grade": 8,
|
||||
"merge": 128
|
||||
},
|
||||
{
|
||||
"grade": 9,
|
||||
"merge": 256
|
||||
},
|
||||
{
|
||||
"grade": 10,
|
||||
"merge": 512
|
||||
}
|
||||
]
|
902
JisolGameServer/Main/src/main/resources/json/tbgrolecup.json
Normal file
902
JisolGameServer/Main/src/main/resources/json/tbgrolecup.json
Normal file
@ -0,0 +1,902 @@
|
||||
[
|
||||
{
|
||||
"grade": 1,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 2,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 3,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 4,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 1600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 5,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 2500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 6,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 3600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 7,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 4900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 8,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 6400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 9,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 8100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 10,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 10000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 11,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 12100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 12,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 14400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 13,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 16900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 14,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 19600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 15,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 22500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 16,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 25600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 17,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 28900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 18,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 32400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 19,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 36100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 20,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 40000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 21,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 44100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 22,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 48400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 23,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 52900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 24,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 57600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 25,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 62500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 26,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 67600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 27,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 72900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 28,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 78400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 29,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 84100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 30,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 90000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 31,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 96100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 32,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 102400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 33,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 108900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 34,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 115600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 35,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 122500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 36,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 129600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 37,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 136900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 38,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 144400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 39,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 152100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 40,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 160000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 41,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 168100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 42,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 176400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 43,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 184900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 44,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 193600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 45,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 202500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 46,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 211600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 47,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 220900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 48,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 230400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 49,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 240100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 50,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 250000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 51,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 260100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 52,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 270400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 53,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 280900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 54,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 291600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 55,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 302500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 56,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 313600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 57,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 324900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 58,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 336400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 59,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 348100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 60,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 360000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 61,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 372100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 62,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 384400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 63,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 396900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 64,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 409600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 65,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 422500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 66,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 435600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 67,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 448900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 68,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 462400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 69,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 476100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 70,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 490000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 71,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 504100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 72,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 518400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 73,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 532900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 74,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 547600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 75,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 562500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 76,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 577600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 77,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 592900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 78,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 608400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 79,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 624100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 80,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 640000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 81,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 656100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 82,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 672400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 83,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 688900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 84,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 705600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 85,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 722500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 86,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 739600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 87,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 756900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 88,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 774400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 89,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 792100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 90,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 810000
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 91,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 828100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 92,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 846400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 93,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 864900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 94,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 883600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 95,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 902500
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 96,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 921600
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 97,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 940900
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 98,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 960400
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 99,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 980100
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grade": 100,
|
||||
"materials": [
|
||||
{
|
||||
"id": 90001,
|
||||
"value": 1000000
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
@ -5,8 +5,8 @@
|
||||
"skillController": "GSkillCrazySquirrel",
|
||||
"skillArgs": [
|
||||
"5",
|
||||
"250",
|
||||
"250"
|
||||
"300",
|
||||
"300"
|
||||
],
|
||||
"skillText": "疯狂松鼠的技能 丢出巨大炸弹 轰炸全部玩家"
|
||||
},
|
||||
|
53
headless/index.js
Normal file
53
headless/index.js
Normal file
@ -0,0 +1,53 @@
|
||||
// const URL = "http://192.168.0.174:7457/web-desktop/web-desktop/index.html"
|
||||
const express = require("express");
|
||||
const app = express();
|
||||
const URL = "http://127.0.0.1:3000/static/index.html"
|
||||
|
||||
const runCocos = () => {
|
||||
|
||||
const { JSDOM,ResourceLoader } = require('jsdom')
|
||||
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
|
||||
|
||||
const WebGL = require('gl');
|
||||
const WebGLRenderingContext = WebGL.WebGLRenderingContext;
|
||||
WebGLRenderingContext.prototype.texSubImage2D = function(){};
|
||||
const gl = WebGL(64, 64, { preserveDrawingBuffer: true });
|
||||
|
||||
const resourceLoader = new ResourceLoader({
|
||||
proxy: URL,
|
||||
strictSSL: false,
|
||||
// userAgent: "Mellblomenator/9000",
|
||||
});
|
||||
|
||||
fetch(URL).then(res => res.text()).then(html => {
|
||||
console.log("HTML Index 文件: ",html)
|
||||
global.window = (new JSDOM(html, {
|
||||
url: URL,
|
||||
referrer: URL,
|
||||
contentType: "text/html; charset=utf-8",
|
||||
resources:resourceLoader,
|
||||
storageQuota: 10000000 ,
|
||||
runScripts: "dangerously"
|
||||
})).window;
|
||||
|
||||
let HGContext = window.HTMLCanvasElement.prototype.getContext;
|
||||
window.TextDecoder = global.TextDecoder;
|
||||
window.HTMLCanvasElement.prototype.getContext = function(type,data) {
|
||||
if(type == "2d") {
|
||||
const TD = HGContext.bind(this)(type,data);
|
||||
TD.RenderComponentHandle = ()=>{}
|
||||
return TD;
|
||||
}
|
||||
return gl;
|
||||
};
|
||||
window.requestAnimationFrame = global.requestAnimationFrame;
|
||||
window.fetch = fetch;
|
||||
})
|
||||
|
||||
setTimeout(() => {}, 99999999);
|
||||
}
|
||||
app.use('/static', express.static('static'))
|
||||
app.listen(3000, () => {
|
||||
console.log("服务启动");
|
||||
runCocos();
|
||||
});
|
22
headless/package.json
Normal file
22
headless/package.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "headless",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"main": "node index.js"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"axios": "^1.5.1",
|
||||
"canvas": "^2.11.2",
|
||||
"express": "^4.18.2",
|
||||
"gl": "^6.0.2",
|
||||
"jsdom": "^22.1.0",
|
||||
"node-fetch": "^3.3.2",
|
||||
"systemjs": "^6.14.2",
|
||||
"xmlhttprequest": "^1.8.0"
|
||||
}
|
||||
}
|
63
headless/static/application.js
Normal file
63
headless/static/application.js
Normal file
@ -0,0 +1,63 @@
|
||||
System.register([], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var cc, Application;
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
return {
|
||||
setters: [],
|
||||
execute: function () {
|
||||
_export("Application", Application = /*#__PURE__*/function () {
|
||||
function Application() {
|
||||
_classCallCheck(this, Application);
|
||||
|
||||
this.settingsPath = 'src/settings.json';
|
||||
this.showFPS = true;
|
||||
}
|
||||
|
||||
_createClass(Application, [{
|
||||
key: "init",
|
||||
value: function init(engine) {
|
||||
cc = engine;
|
||||
cc.game.onPostBaseInitDelegate.add(this.onPostInitBase.bind(this));
|
||||
cc.game.onPostSubsystemInitDelegate.add(this.onPostSystemInit.bind(this));
|
||||
}
|
||||
}, {
|
||||
key: "onPostInitBase",
|
||||
value: function onPostInitBase() {// cc.settings.overrideSettings('assets', 'server', '');
|
||||
// do custom logic
|
||||
}
|
||||
}, {
|
||||
key: "onPostSystemInit",
|
||||
value: function onPostSystemInit() {// do custom logic
|
||||
}
|
||||
}, {
|
||||
key: "start",
|
||||
value: function start() {
|
||||
return cc.game.init({
|
||||
debugMode: true ? cc.DebugMode.INFO : cc.DebugMode.ERROR,
|
||||
settingsPath: this.settingsPath,
|
||||
overrideSettings: {
|
||||
// assets: {
|
||||
// preloadBundles: [{ bundle: 'main', version: 'xxx' }],
|
||||
// }
|
||||
profiling: {
|
||||
showFPS: this.showFPS
|
||||
}
|
||||
}
|
||||
}).then(function () {
|
||||
return cc.game.run();
|
||||
});
|
||||
}
|
||||
}]);
|
||||
|
||||
return Application;
|
||||
}());
|
||||
}
|
||||
};
|
||||
});
|
145
headless/static/assets/internal/config.json
Normal file
145
headless/static/assets/internal/config.json
Normal file
@ -0,0 +1,145 @@
|
||||
{
|
||||
"importBase": "import",
|
||||
"nativeBase": "native",
|
||||
"name": "internal",
|
||||
"deps": [],
|
||||
"uuids": [
|
||||
"1c02ae6f-4492-4915-b8f8-7492a3b1e4cd",
|
||||
"50f4348b-c883-4e2f-8f11-ce233b859fa1",
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0",
|
||||
"810e96e4-e456-4468-9b59-f4e8f39732c0",
|
||||
"871c3b6c-7379-419d-bda3-794b239ab90d",
|
||||
"8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107",
|
||||
"970b0598-bcb0-4714-91fb-2e81440dccd8",
|
||||
"a3cd009f-0ab0-420d-9278-b9fdab939bbc",
|
||||
"b5d6115f-0370-4d7c-aad3-c194cc71cf98",
|
||||
"bcd64cc6-2dd9-43f6-abbe-66318d332032",
|
||||
"c27215d8-6835-4b68-bfbb-bdeac6100c04",
|
||||
"d930590d-bb92-4cc8-8bd1-23cd027f9edf",
|
||||
"dd3a144d-ab7f-41f0-82b8-2e43a090d496",
|
||||
"e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f",
|
||||
"efe8e2a3-eace-427b-b4f1-cb8a937ec77d",
|
||||
"f0416e68-0200-4b77-a926-4f9d16e494da",
|
||||
"f92806d7-1768-443f-afe8-12bcde84d0f0",
|
||||
"fda095cb-831d-4601-ad94-846013963de8"
|
||||
],
|
||||
"paths": {
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0": [
|
||||
"db:/internal/effects/for2d/builtin-sprite",
|
||||
"cc.EffectAsset"
|
||||
],
|
||||
"1c02ae6f-4492-4915-b8f8-7492a3b1e4cd": [
|
||||
"db:/internal/effects/internal/builtin-graphics",
|
||||
"cc.EffectAsset"
|
||||
],
|
||||
"810e96e4-e456-4468-9b59-f4e8f39732c0": [
|
||||
"db:/internal/effects/internal/builtin-clear-stencil",
|
||||
"cc.EffectAsset"
|
||||
],
|
||||
"efe8e2a3-eace-427b-b4f1-cb8a937ec77d": [
|
||||
"db:/internal/default_materials/ui-sprite-gray-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f": [
|
||||
"db:/internal/default_materials/ui-base-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107": [
|
||||
"db:/internal/default_materials/default-clear-stencil",
|
||||
"cc.Material"
|
||||
],
|
||||
"50f4348b-c883-4e2f-8f11-ce233b859fa1": [
|
||||
"db:/internal/default_materials/ui-alpha-test-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"fda095cb-831d-4601-ad94-846013963de8": [
|
||||
"db:/internal/default_materials/ui-sprite-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"f92806d7-1768-443f-afe8-12bcde84d0f0": [
|
||||
"db:/internal/default_materials/ui-sprite-alpha-sep-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"dd3a144d-ab7f-41f0-82b8-2e43a090d496": [
|
||||
"db:/internal/default_materials/ui-sprite-gray-alpha-sep-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"f0416e68-0200-4b77-a926-4f9d16e494da": [
|
||||
"db:/internal/default_materials/ui-graphics-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"970b0598-bcb0-4714-91fb-2e81440dccd8": [
|
||||
"db:/internal/effects/util/splash-screen",
|
||||
"cc.EffectAsset"
|
||||
],
|
||||
"bcd64cc6-2dd9-43f6-abbe-66318d332032": [
|
||||
"db:/internal/default_materials/missing-effect-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"d930590d-bb92-4cc8-8bd1-23cd027f9edf": [
|
||||
"db:/internal/default_materials/missing-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"a3cd009f-0ab0-420d-9278-b9fdab939bbc": [
|
||||
"db:/internal/effects/builtin-unlit",
|
||||
"cc.EffectAsset"
|
||||
],
|
||||
"c27215d8-6835-4b68-bfbb-bdeac6100c04": [
|
||||
"db:/internal/effects/for2d/builtin-spine",
|
||||
"cc.EffectAsset"
|
||||
],
|
||||
"b5d6115f-0370-4d7c-aad3-c194cc71cf98": [
|
||||
"db:/internal/default_materials/default-spine-material",
|
||||
"cc.Material"
|
||||
],
|
||||
"871c3b6c-7379-419d-bda3-794b239ab90d": [
|
||||
"db:/internal/effects/util/profiler",
|
||||
"cc.EffectAsset"
|
||||
]
|
||||
},
|
||||
"scenes": {},
|
||||
"packs": {},
|
||||
"versions": {
|
||||
"import": [],
|
||||
"native": []
|
||||
},
|
||||
"redirect": [],
|
||||
"debug": true,
|
||||
"extensionMap": {},
|
||||
"hasPreloadScript": true,
|
||||
"dependencyRelationships": {
|
||||
"50f4348b-c883-4e2f-8f11-ce233b859fa1": [
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0"
|
||||
],
|
||||
"8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107": [
|
||||
"810e96e4-e456-4468-9b59-f4e8f39732c0"
|
||||
],
|
||||
"b5d6115f-0370-4d7c-aad3-c194cc71cf98": [
|
||||
"c27215d8-6835-4b68-bfbb-bdeac6100c04"
|
||||
],
|
||||
"bcd64cc6-2dd9-43f6-abbe-66318d332032": [
|
||||
"a3cd009f-0ab0-420d-9278-b9fdab939bbc"
|
||||
],
|
||||
"d930590d-bb92-4cc8-8bd1-23cd027f9edf": [
|
||||
"a3cd009f-0ab0-420d-9278-b9fdab939bbc"
|
||||
],
|
||||
"dd3a144d-ab7f-41f0-82b8-2e43a090d496": [
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0"
|
||||
],
|
||||
"e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f": [
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0"
|
||||
],
|
||||
"efe8e2a3-eace-427b-b4f1-cb8a937ec77d": [
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0"
|
||||
],
|
||||
"f0416e68-0200-4b77-a926-4f9d16e494da": [
|
||||
"1c02ae6f-4492-4915-b8f8-7492a3b1e4cd"
|
||||
],
|
||||
"f92806d7-1768-443f-afe8-12bcde84d0f0": [
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0"
|
||||
],
|
||||
"fda095cb-831d-4601-ad94-846013963de8": [
|
||||
"60f7195c-ec2a-45eb-ba94-8955f60e81d0"
|
||||
]
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
[1,["60f7195c-ec2a-45eb-ba94-8955f60e81d0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-alpha-test-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_ALPHA_TEST":true,"USE_TEXTURE":true,"IS_GRAY":false,"CC_USE_EMBEDDED_ALPHA":false}]]],0,0,[0],[0],[0]]
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
[1,0,0,[["cc.EffectAsset",["_name","combinations","shaders","techniques"],-1]],[[0,0,1,2,3,5]],[[0,"internal/builtin-clear-stencil",[{}],[{"hash":3507038093,"name":"internal/builtin-clear-stencil|sprite-vs:vert|sprite-fs:frag","blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[],"attributes":[{"name":"a_position","format":32,"location":0,"defines":[]}],"fragColors":[{"name":"cc_FragColor","typename":"vec4","type":16,"count":1,"stageFlags":16,"location":0,"defines":[]}],"descriptors":[{"rate":0,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]},{"rate":1,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]},{"rate":2,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]},{"rate":3,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]}],"glsl3":{"vert":"\nprecision highp float;\nin vec3 a_position;\nvec4 vert () {\n vec4 pos = vec4(a_position, 1);\n return pos;\n}\nvoid main() { gl_Position = vert(); }","frag":"\nprecision highp float;\nvec4 frag () {\n vec4 o = vec4(1.0);\n return o;\n}\nlayout(location = 0) out vec4 cc_FragColor;\nvoid main() { cc_FragColor = frag(); }"},"glsl1":{"vert":"\nprecision highp float;\nattribute vec3 a_position;\nvec4 vert () {\n vec4 pos = vec4(a_position, 1);\n return pos;\n}\nvoid main() { gl_Position = vert(); }","frag":"\nprecision highp float;\nvec4 frag () {\n vec4 o = vec4(1.0);\n return o;\n}\nvoid main() { gl_FragColor = frag(); }"},"builtins":{"globals":{"blocks":[],"samplerTextures":[],"buffers":[],"images":[]},"locals":{"blocks":[],"samplerTextures":[],"buffers":[],"images":[]},"statistics":{"CC_EFFECT_USED_VERTEX_UNIFORM_VECTORS":0,"CC_EFFECT_USED_FRAGMENT_UNIFORM_VECTORS":0}},"defines":[]}],[{"passes":[{"program":"internal/builtin-clear-stencil|sprite-vs:vert|sprite-fs:frag","blendState":{"targets":[{"blend":true}]},"rasterizerState":{"cullMode":0},"depthStencilState":{"depthTest":false,"depthWrite":false}}]}]]],0,0,[],[],[]]
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
[1,["810e96e4-e456-4468-9b59-f4e8f39732c0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"default-clear-stencil",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":false}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,[["cc.EffectAsset",["_name","shaders","techniques"],0]],[[0,0,1,2,4]],[[0,"util/splash-screen",[{"hash":3189094080,"name":"util/splash-screen|splash-screen-vs:vert|splash-screen-fs:frag","blocks":[{"name":"Constant","stageFlags":1,"binding":0,"members":[{"name":"u_buffer0","type":16,"count":1},{"name":"u_buffer1","type":16,"count":1},{"name":"u_projection","type":25,"count":1}],"defines":[]},{"name":"Factor","stageFlags":16,"binding":1,"members":[{"name":"u_percent","type":13,"count":1}],"defines":[]}],"samplerTextures":[{"name":"mainTexture","type":28,"count":1,"stageFlags":16,"binding":2,"defines":[]}],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[],"attributes":[{"name":"a_position","format":21,"location":0,"defines":[]},{"name":"a_texCoord","format":21,"location":1,"defines":[]}],"fragColors":[{"name":"cc_FragColor","typename":"vec4","type":16,"count":1,"stageFlags":16,"location":0,"defines":[]}],"descriptors":[{"rate":0,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]},{"rate":1,"blocks":[{"name":"Constant","stageFlags":1,"binding":0,"members":[{"name":"u_buffer0","type":16,"count":1},{"name":"u_buffer1","type":16,"count":1},{"name":"u_projection","type":25,"count":1}],"defines":[]},{"name":"Factor","stageFlags":16,"binding":1,"members":[{"name":"u_percent","type":13,"count":1}],"defines":[]}],"samplerTextures":[{"name":"mainTexture","type":28,"count":1,"stageFlags":16,"binding":2,"defines":[]}],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]},{"rate":2,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]},{"rate":3,"blocks":[],"samplerTextures":[],"samplers":[],"textures":[],"buffers":[],"images":[],"subpassInputs":[]}],"glsl3":{"vert":"\nprecision mediump float;\nin vec2 a_position;\nin vec2 a_texCoord;\nout vec2 v_uv;\nlayout(std140) uniform Constant {\n vec4 u_buffer0;\n vec4 u_buffer1;\n mat4 u_projection;\n};\nvec4 vert () {\n vec2 worldPos = a_position * u_buffer1.xy + u_buffer1.zw;\n vec2 clipSpace = worldPos / u_buffer0.xy * 2.0 - 1.0;\n vec4 screenPos = u_projection * vec4(clipSpace, 0.0, 1.0);\n v_uv = a_texCoord;\n return screenPos;\n}\nvoid main() { gl_Position = vert(); }","frag":"\nprecision mediump float;\nin vec2 v_uv;\nlayout(std140) uniform Factor {\n float u_percent;\n};\nuniform sampler2D mainTexture;\nvec4 frag () {\n vec4 color = texture(mainTexture, v_uv);\n float percent = clamp(u_percent, 0.0, 1.0);\n color.xyz *= percent;\n return color;\n}\nlayout(location = 0) out vec4 cc_FragColor;\nvoid main() { cc_FragColor = frag(); }"},"glsl1":{"vert":"\nprecision mediump float;\nattribute vec2 a_position;\nattribute vec2 a_texCoord;\nvarying vec2 v_uv;\n uniform vec4 u_buffer0;\n uniform vec4 u_buffer1;\n uniform mat4 u_projection;\nvec4 vert () {\n vec2 worldPos = a_position * u_buffer1.xy + u_buffer1.zw;\n vec2 clipSpace = worldPos / u_buffer0.xy * 2.0 - 1.0;\n vec4 screenPos = u_projection * vec4(clipSpace, 0.0, 1.0);\n v_uv = a_texCoord;\n return screenPos;\n}\nvoid main() { gl_Position = vert(); }","frag":"\nprecision mediump float;\nvarying vec2 v_uv;\n uniform float u_percent;\nuniform sampler2D mainTexture;\nvec4 frag () {\n vec4 color = texture2D(mainTexture, v_uv);\n float percent = clamp(u_percent, 0.0, 1.0);\n color.xyz *= percent;\n return color;\n}\nvoid main() { gl_FragColor = frag(); }"},"builtins":{"globals":{"blocks":[],"samplerTextures":[],"buffers":[],"images":[]},"locals":{"blocks":[],"samplerTextures":[],"buffers":[],"images":[]},"statistics":{"CC_EFFECT_USED_VERTEX_UNIFORM_VECTORS":6,"CC_EFFECT_USED_FRAGMENT_UNIFORM_VECTORS":1}},"defines":[]}],[{"name":"default","passes":[{"program":"util/splash-screen|splash-screen-vs:vert|splash-screen-fs:frag","blendState":{"targets":[{"blend":true,"blendSrc":2,"blendDst":4,"blendDstAlpha":4}]},"rasterizerState":{"cullMode":0},"depthStencilState":{"depthTest":false,"depthWrite":false},"properties":{"mainTexture":{"value":"grey","type":28},"resolution":{"type":14,"value":[640,960],"handleInfo":["u_buffer0",0,14]},"percent":{"type":13,"value":[0.5],"handleInfo":["u_percent",0,13]},"scale":{"type":14,"value":[200,500],"handleInfo":["u_buffer1",0,14]},"translate":{"type":14,"value":[320,480],"handleInfo":["u_buffer1",2,14]},"u_buffer0":{"type":16,"value":[640,960,0,0]},"u_percent":{"type":13,"value":[0.5]},"u_buffer1":{"type":16,"value":[200,500,320,480]}}}]}]]],0,0,[],[],[]]
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
[1,["c27215d8-6835-4b68-bfbb-bdeac6100c04"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"default-spine-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":true,"CC_USE_EMBEDDED_ALPHA":false,"IS_GRAY":false}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["a3cd009f-0ab0-420d-9278-b9fdab939bbc"],["_effectAsset"],[["cc.Material",["_name","_states","_defines","_props"],0,12]],[[0,0,1,2,3,4]],[[0,"missing-effect-material",[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_COLOR":true}],[[[{},"mainColor",8,[4,4278255615]]],11]]],0,0,[0],[0],[0]]
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
[1,["a3cd009f-0ab0-420d-9278-b9fdab939bbc"],["_effectAsset"],[["cc.Material",["_name","_states","_defines","_props"],0,12]],[[0,0,1,2,3,4]],[[0,"missing-material",[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_COLOR":true}],[[[{},"mainColor",8,[4,4294902015]]],11]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["60f7195c-ec2a-45eb-ba94-8955f60e81d0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-sprite-gray-alpha-sep-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":true,"CC_USE_EMBEDDED_ALPHA":true,"IS_GRAY":true}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["60f7195c-ec2a-45eb-ba94-8955f60e81d0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-base-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":false}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["60f7195c-ec2a-45eb-ba94-8955f60e81d0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-sprite-gray-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":true,"CC_USE_EMBEDDED_ALPHA":false,"IS_GRAY":true}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["1c02ae6f-4492-4915-b8f8-7492a3b1e4cd"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-graphics-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["60f7195c-ec2a-45eb-ba94-8955f60e81d0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-sprite-alpha-sep-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":true,"CC_USE_EMBEDDED_ALPHA":true,"IS_GRAY":false}]]],0,0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,["60f7195c-ec2a-45eb-ba94-8955f60e81d0"],["_effectAsset"],[["cc.Material",["_name","_props","_states","_defines"],-1]],[[0,0,1,2,3,5]],[[0,"ui-sprite-material",[{}],[{"rasterizerState":{},"depthStencilState":{},"blendState":{"targets":[{}]}}],[{"USE_TEXTURE":true,"IS_GRAY":false,"CC_USE_EMBEDDED_ALPHA":false}]]],0,0,[0],[0],[0]]
|
24
headless/static/assets/internal/index.js
Normal file
24
headless/static/assets/internal/index.js
Normal file
@ -0,0 +1,24 @@
|
||||
System.register("chunks:///internal.js", [], function () {
|
||||
return {
|
||||
execute: function () {}
|
||||
};
|
||||
});
|
||||
|
||||
(function(r) {
|
||||
r('virtual:///prerequisite-imports/internal', 'chunks:///internal.js');
|
||||
})(function(mid, cid) {
|
||||
System.register(mid, [cid], function (_export, _context) {
|
||||
return {
|
||||
setters: [function(_m) {
|
||||
var _exportObj = {};
|
||||
|
||||
for (var _key in _m) {
|
||||
if (_key !== "default" && _key !== "__esModule") _exportObj[_key] = _m[_key];
|
||||
}
|
||||
|
||||
_export(_exportObj);
|
||||
}],
|
||||
execute: function () { }
|
||||
};
|
||||
});
|
||||
});
|
52
headless/static/assets/main/config.json
Normal file
52
headless/static/assets/main/config.json
Normal file
@ -0,0 +1,52 @@
|
||||
{
|
||||
"importBase": "import",
|
||||
"nativeBase": "native",
|
||||
"name": "main",
|
||||
"deps": [
|
||||
"resources"
|
||||
],
|
||||
"uuids": [
|
||||
"25581f1e-f65e-4797-8a7a-b6718171b165",
|
||||
"42607a6e-d30a-48cc-8161-2b3426e14703",
|
||||
"745b8038-b832-48f8-9873-1baa6de58ad7",
|
||||
"ba21476f-2866-4f81-9c4d-6e359316e448",
|
||||
"fd8ec536-a354-4a17-9c74-4f3883c378c8"
|
||||
],
|
||||
"paths": {
|
||||
"42607a6e-d30a-48cc-8161-2b3426e14703": [
|
||||
"db:/assets/Main",
|
||||
"cc.SceneAsset"
|
||||
],
|
||||
"fd8ec536-a354-4a17-9c74-4f3883c378c8": [
|
||||
"db:/internal/default_renderpipeline/builtin-forward",
|
||||
"cc.RenderPipeline"
|
||||
],
|
||||
"ba21476f-2866-4f81-9c4d-6e359316e448": [
|
||||
"db:/internal/physics/default-physics-material",
|
||||
"cc.PhysicsMaterial"
|
||||
]
|
||||
},
|
||||
"scenes": {
|
||||
"db://assets/Main.scene": "42607a6e-d30a-48cc-8161-2b3426e14703"
|
||||
},
|
||||
"packs": {},
|
||||
"versions": {
|
||||
"import": [],
|
||||
"native": []
|
||||
},
|
||||
"redirect": [
|
||||
"25581f1e-f65e-4797-8a7a-b6718171b165",
|
||||
"0",
|
||||
"745b8038-b832-48f8-9873-1baa6de58ad7",
|
||||
"0"
|
||||
],
|
||||
"debug": true,
|
||||
"extensionMap": {},
|
||||
"hasPreloadScript": true,
|
||||
"dependencyRelationships": {
|
||||
"42607a6e-d30a-48cc-8161-2b3426e14703": [
|
||||
"745b8038-b832-48f8-9873-1baa6de58ad7",
|
||||
"25581f1e-f65e-4797-8a7a-b6718171b165"
|
||||
]
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
[1,["745b8038-b832-48f8-9873-1baa6de58ad7","25581f1e-f65e-4797-8a7a-b6718171b165"],["UIPrefab","WorldPrefab","node","scene"],[["cc.SceneAsset",["_name"],2],["cc.Scene",["_name","_children","_prefab","_globals"],2,2,4,4],["cc.Node",["_name","_layer","_id","_parent","_components"],0,1,9],["1e0e1EfsZhOOZDlp+IFMryA",["node","UIPrefab","WorldPrefab"],3,1,6,6],["cc.PrefabInfo",["root","asset","fileId","instance","targetOverrides","nestedPrefabInstanceRoots"],-3],["cc.SceneGlobals",["ambient","shadows","_skybox","fog","octree","skin","lightProbeInfo","postSettings"],3,4,4,4,4,4,4,4,4],["cc.AmbientInfo",["_skyColorHDR","_groundAlbedoHDR"],3,5,5],["cc.ShadowsInfo",["_shadowColor","_size"],3,5,5],["cc.SkyboxInfo",[],3],["cc.FogInfo",[],3],["cc.OctreeInfo",[],3],["cc.SkinInfo",[],3],["cc.LightProbeInfo",[],3],["cc.PostSettingsInfo",[],3]],[[0,0,2],[1,0,1,2,3,2],[2,0,1,2,3,4,4],[3,0,1,2,1],[4,0,1,2,3,4,5,7],[5,0,1,2,3,4,5,6,7,1],[6,0,1,1],[7,0,1,1],[8,1],[9,1],[10,1],[11,1],[12,1],[13,1]],[[0,"Main"],[1,"Main",[-1],[4,null,null,"42607a6e-d30a-48cc-8161-2b3426e14703",null,null,null],[5,[6,[2,0,0,0,0.520833125],[2,0,0,0,0]],[7,[4,4283190348],[0,512,512]],[8],[9],[10],[11],[12],[13]]],[2,"Main",33554432,"5eRrvQLR5OMLtBx7381QA8",1,[[3,-2,0,1]]]],0,[0,-1,2,0,2,2,0,3,1,2],[0,0],[0,1],[0,1]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,[["cc.PhysicsMaterial",["_name","_friction","_rollingFriction","_spinningFriction","_restitution"],-2]],[[0,0,1,2,3,4,6]],[[0,"default-physics-material",0.8,0.1,0.1,0.1]],0,0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,[["RenderQueueDesc",["stages","isTransparent","sortMode"],0],["ForwardPipeline",["_flows"],3,9],["ShadowFlow",["_name","_stages"],2,9],["ShadowStage",["_name"],2],["ForwardFlow",["_name","_priority","_stages"],1,9],["ForwardStage",["_name","renderQueues"],2,9]],[[1,0,1],[2,0,1,2],[3,0,2],[4,0,1,2,3],[5,0,1,2],[0,0,2],[0,1,2,0,4]],[[0,[[1,"ShadowFlow",[[2,"ShadowStage"]]],[3,"ForwardFlow",1,[[4,"ForwardStage",[[5,["default"]],[6,true,1,["default"]]]]]]]]],0,0,[],[],[]]
|
22094
headless/static/assets/main/index.js
Normal file
22094
headless/static/assets/main/index.js
Normal file
File diff suppressed because it is too large
Load Diff
119696
headless/static/cocos-js/_virtual_cc-3c607f36.js
Normal file
119696
headless/static/cocos-js/_virtual_cc-3c607f36.js
Normal file
File diff suppressed because one or more lines are too long
BIN
headless/static/cocos-js/assets/spine-a0005c42.wasm
Normal file
BIN
headless/static/cocos-js/assets/spine-a0005c42.wasm
Normal file
Binary file not shown.
BIN
headless/static/cocos-js/assets/spine.js.mem-c0c591ab.bin
Normal file
BIN
headless/static/cocos-js/assets/spine.js.mem-c0c591ab.bin
Normal file
Binary file not shown.
13
headless/static/cocos-js/cc.js
Normal file
13
headless/static/cocos-js/cc.js
Normal file
File diff suppressed because one or more lines are too long
10
headless/static/cocos-js/spine-3e0daee9.js
Normal file
10
headless/static/cocos-js/spine-3e0daee9.js
Normal file
@ -0,0 +1,10 @@
|
||||
System.register([], (function (exports, module) {
|
||||
'use strict';
|
||||
return {
|
||||
execute: (function () {
|
||||
|
||||
var spine = exports('default', 'assets/spine-a0005c42.wasm');
|
||||
|
||||
})
|
||||
};
|
||||
}));
|
37
headless/static/cocos-js/spine.asm-0a7772b8.js
Normal file
37
headless/static/cocos-js/spine.asm-0a7772b8.js
Normal file
File diff suppressed because one or more lines are too long
10
headless/static/cocos-js/spine.js-f7f5ea79.js
Normal file
10
headless/static/cocos-js/spine.js-f7f5ea79.js
Normal file
@ -0,0 +1,10 @@
|
||||
System.register([], (function (exports, module) {
|
||||
'use strict';
|
||||
return {
|
||||
execute: (function () {
|
||||
|
||||
var spine_js = exports('default', 'assets/spine.js.mem-c0c591ab.bin');
|
||||
|
||||
})
|
||||
};
|
||||
}));
|
2123
headless/static/cocos-js/spine.wasm-d2854650.js
Normal file
2123
headless/static/cocos-js/spine.wasm-d2854650.js
Normal file
File diff suppressed because it is too large
Load Diff
BIN
headless/static/favicon.ico
Normal file
BIN
headless/static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
46
headless/static/index.html
Normal file
46
headless/static/index.html
Normal file
@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>Cocos Creator | JisolGameCocos</title>
|
||||
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,minimum-scale=1,maximum-scale=1,minimal-ui=true"/>
|
||||
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="full-screen" content="yes"/>
|
||||
<meta name="screen-orientation" content="portrait"/>
|
||||
<meta name="x5-fullscreen" content="true"/>
|
||||
<meta name="360-fullscreen" content="true"/>
|
||||
|
||||
<meta name="renderer" content="webkit"/>
|
||||
<meta name="force-rendering" content="webkit"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="style.css"/>
|
||||
<link rel="icon" href="favicon.ico"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="header">JisolGameCocos</h1>
|
||||
|
||||
<div id="GameDiv" cc_exact_fit_screen="false" style="width: 720px; height: 1280px;">
|
||||
<div id="Cocos3dGameContainer">
|
||||
<canvas id="GameCanvas" width="720" height="1280" tabindex="99"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
<p class="footer">
|
||||
Created with <a href="https://www.cocos.com/products" title="Cocos Creator">Cocos Creator</a>
|
||||
</p>
|
||||
<!-- Polyfills bundle. -->
|
||||
<script src="src/polyfills.bundle.js" charset="utf-8"> </script>
|
||||
|
||||
<!-- SystemJS support. -->
|
||||
<script src="src/system.bundle.js" charset="utf-8"> </script>
|
||||
|
||||
<!-- Import map -->
|
||||
<script src="src/import-map.json" type="systemjs-importmap" charset="utf-8"> </script>
|
||||
|
||||
<script>
|
||||
System.import('./index.js').catch(function(err) { console.error(err); })
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
25
headless/static/index.js
Normal file
25
headless/static/index.js
Normal file
@ -0,0 +1,25 @@
|
||||
System.register(["./application.js"], function (_export, _context) {
|
||||
"use strict";
|
||||
|
||||
var Application, application;
|
||||
|
||||
function topLevelImport(url) {
|
||||
return System["import"](url);
|
||||
}
|
||||
|
||||
return {
|
||||
setters: [function (_applicationJs) {
|
||||
Application = _applicationJs.Application;
|
||||
}],
|
||||
execute: function () {
|
||||
application = new Application();
|
||||
topLevelImport('cc').then(function (engine) {
|
||||
return application.init(engine);
|
||||
}).then(function () {
|
||||
return application.start();
|
||||
})["catch"](function (err) {
|
||||
console.error(err);
|
||||
});
|
||||
}
|
||||
};
|
||||
});
|
4699
headless/static/remote/battle/config.json
Normal file
4699
headless/static/remote/battle/config.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["001fea8b-233c-4830-96aa-5f0d9845668b@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"timo5 013","rect":{"x":1,"y":1,"width":82,"height":83},"offset":{"x":0,"y":0},"originalSize":{"width":84,"height":85},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-41,-41.5,0,41,-41.5,0,-41,41.5,0,41,41.5,0],"indexes":[0,1,2,2,1,3],"uv":[1,84,83,84,1,1,83,1],"nuv":[0.011904761904761904,0.011764705882352941,0.9880952380952381,0.011764705882352941,0.011904761904761904,0.9882352941176471,0.9880952380952381,0.9882352941176471],"minPos":{"x":-41,"y":-41.5,"z":0},"maxPos":{"x":41,"y":41.5,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,[["cc.Asset",["_name","_native"],1]],[[0,0,1,3]],[[0,"guaiA1a",".spine"],-1],0,0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["026823e5-14f5-4f70-a73e-88a3f8e8001e@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"baozha0003","rect":{"x":13,"y":12,"width":176,"height":163},"offset":{"x":1,"y":-1},"originalSize":{"width":200,"height":185},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-88,-81.5,0,88,-81.5,0,-88,81.5,0,88,81.5,0],"indexes":[0,1,2,2,1,3],"uv":[13,173,189,173,13,10,189,10],"nuv":[0.065,0.05405405405405406,0.945,0.05405405405405406,0.065,0.9351351351351351,0.945,0.9351351351351351],"minPos":{"x":-88,"y":-81.5,"z":0},"maxPos":{"x":88,"y":81.5,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["03942db8-6a99-42a3-98cf-70229cc5403e@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"cao","rect":{"x":0,"y":0,"width":38,"height":42},"offset":{"x":0,"y":0},"originalSize":{"width":38,"height":42},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-19,-21,0,19,-21,0,-19,21,0,19,21,0],"indexes":[0,1,2,2,1,3],"uv":[0,42,38,42,0,0,38,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-19,"y":-21,"z":0},"maxPos":{"x":19,"y":21,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0423f835-3fbe-49d7-9c6a-ff9588e5c122@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"z_yanjing_bz","rect":{"x":0,"y":0,"width":18,"height":20},"offset":{"x":0,"y":0},"originalSize":{"width":18,"height":20},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-9,-10,0,9,-10,0,-9,10,0,9,10,0],"indexes":[0,1,2,2,1,3],"uv":[0,20,18,20,0,0,18,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-9,"y":-10,"z":0},"maxPos":{"x":9,"y":10,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["063fc0a8-27de-4950-b87e-f8d93a8c97af@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"zui_pingshi","rect":{"x":0,"y":0,"width":49,"height":14},"offset":{"x":0,"y":0},"originalSize":{"width":49,"height":14},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-24.5,-7,0,24.5,-7,0,-24.5,7,0,24.5,7,0],"indexes":[0,1,2,2,1,3],"uv":[0,14,49,14,0,0,49,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-24.5,"y":-7,"z":0},"maxPos":{"x":24.5,"y":7,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["06e4dec4-9199-42fa-81c9-1d6c8dce5e3e@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"z_yan_shengli","rect":{"x":0,"y":0,"width":8,"height":7},"offset":{"x":0,"y":0},"originalSize":{"width":8,"height":7},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-4,-3.5,0,4,-3.5,0,-4,3.5,0,4,3.5,0],"indexes":[0,1,2,2,1,3],"uv":[0,7,8,7,0,0,8,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-4,"y":-3.5,"z":0},"maxPos":{"x":4,"y":3.5,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["07a6e3b4-0690-4be3-bd6a-ddb8655d0928@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"004","rect":{"x":0,"y":0,"width":224,"height":88},"offset":{"x":0,"y":0},"originalSize":{"width":224,"height":88},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-112,-44,0,112,-44,0,-112,44,0,112,44,0],"indexes":[0,1,2,2,1,3],"uv":[0,88,224,88,0,0,224,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-112,"y":-44,"z":0},"maxPos":{"x":112,"y":44,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["09e80ecb-3cc1-4551-b843-6c2ce7ac1d9e@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"shenti","rect":{"x":1,"y":1,"width":137,"height":68},"offset":{"x":0,"y":0},"originalSize":{"width":139,"height":70},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-68.5,-34,0,68.5,-34,0,-68.5,34,0,68.5,34,0],"indexes":[0,1,2,2,1,3],"uv":[1,69,138,69,1,1,138,1],"nuv":[0.007194244604316547,0.014285714285714285,0.9928057553956835,0.014285714285714285,0.007194244604316547,0.9857142857142858,0.9928057553956835,0.9857142857142858],"minPos":{"x":-68.5,"y":-34,"z":0},"maxPos":{"x":68.5,"y":34,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0a2ed6e6-8614-4176-a464-4c673e0d6847@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"08","rect":{"x":0,"y":0,"width":292,"height":227},"offset":{"x":-13,"y":24.5},"originalSize":{"width":318,"height":276},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-146,-113.5,0,146,-113.5,0,-146,113.5,0,146,113.5,0],"indexes":[0,1,2,2,1,3],"uv":[0,276,292,276,0,49,292,49],"nuv":[0,0.17753623188405798,0.9182389937106918,0.17753623188405798,0,1,0.9182389937106918,1],"minPos":{"x":-146,"y":-113.5,"z":0},"maxPos":{"x":146,"y":113.5,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0a9ca732-f79e-47a8-865f-a11df7979eac@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"Energy 007 Impact Radial_00008","rect":{"x":1,"y":2,"width":31,"height":31},"offset":{"x":0,"y":-1},"originalSize":{"width":33,"height":33},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-15.5,-15.5,0,15.5,-15.5,0,-15.5,15.5,0,15.5,15.5,0],"indexes":[0,1,2,2,1,3],"uv":[1,31,32,31,1,0,32,0],"nuv":[0.030303030303030304,0,0.9696969696969697,0,0.030303030303030304,0.9393939393939394,0.9696969696969697,0.9393939393939394],"minPos":{"x":-15.5,"y":-15.5,"z":0},"maxPos":{"x":15.5,"y":15.5,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0af1bd07-ba37-4db6-bcdb-bd52c636cc65@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"y_bianzi1_bz","rect":{"x":0,"y":0,"width":28,"height":24},"offset":{"x":0,"y":0},"originalSize":{"width":28,"height":24},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-14,-12,0,14,-12,0,-14,12,0,14,12,0],"indexes":[0,1,2,2,1,3],"uv":[0,24,28,24,0,0,28,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-14,"y":-12,"z":0},"maxPos":{"x":14,"y":12,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
1
headless/static/remote/battle/import/0b/0bf76b1f7.json
Normal file
1
headless/static/remote/battle/import/0b/0bf76b1f7.json
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
[1,0,0,[["cc.Asset",["_name","_native"],1]],[[0,0,1,3]],[[0,"guaiA1a",".spine"],-1],0,0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0ec954bb-79cd-4122-bf5c-b86a13c5ef02@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"y_yanjing_bz","rect":{"x":0,"y":0,"width":11,"height":17},"offset":{"x":0,"y":0},"originalSize":{"width":11,"height":17},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-5.5,-8.5,0,5.5,-8.5,0,-5.5,8.5,0,5.5,8.5,0],"indexes":[0,1,2,2,1,3],"uv":[0,17,11,17,0,0,11,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-5.5,"y":-8.5,"z":0},"maxPos":{"x":5.5,"y":8.5,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0f96bbf8-0324-4eab-ba6a-2a70f7653610@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"shenti_bz","rect":{"x":0,"y":0,"width":82,"height":56},"offset":{"x":0,"y":0},"originalSize":{"width":82,"height":56},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-41,-28,0,41,-28,0,-41,28,0,41,28,0],"indexes":[0,1,2,2,1,3],"uv":[0,56,82,56,0,0,82,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-41,"y":-28,"z":0},"maxPos":{"x":41,"y":28,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["0fcb82ad-681d-4f57-ae1e-708a5a1f7fab@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"z_jiao_bz","rect":{"x":0,"y":0,"width":27,"height":32},"offset":{"x":0,"y":0},"originalSize":{"width":27,"height":32},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-13.5,-16,0,13.5,-16,0,-13.5,16,0,13.5,16,0],"indexes":[0,1,2,2,1,3],"uv":[0,32,27,32,0,0,27,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-13.5,"y":-16,"z":0},"maxPos":{"x":13.5,"y":16,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["1014d8fe-eb7e-4351-9454-70ff7a4e4fbc@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"TX_hybz_0062","rect":{"x":4,"y":4,"width":185,"height":194},"offset":{"x":-1,"y":-2},"originalSize":{"width":195,"height":198},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-92.5,-97,0,92.5,-97,0,-92.5,97,0,92.5,97,0],"indexes":[0,1,2,2,1,3],"uv":[4,194,189,194,4,0,189,0],"nuv":[0.020512820512820513,0,0.9692307692307692,0,0.020512820512820513,0.9797979797979798,0.9692307692307692,0.9797979797979798],"minPos":{"x":-92.5,"y":-97,"z":0},"maxPos":{"x":92.5,"y":97,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
@ -0,0 +1 @@
|
||||
[1,["1168b518-61b0-4ca8-ba16-5085b3722064@6c48a"],["_textureSource"],["cc.SpriteFrame"],0,[{"name":"TX_hybz_0060","rect":{"x":6,"y":8,"width":184,"height":190},"offset":{"x":0.5,"y":-4},"originalSize":{"width":195,"height":198},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-92,-95,0,92,-95,0,-92,95,0,92,95,0],"indexes":[0,1,2,2,1,3],"uv":[6,190,190,190,6,0,190,0],"nuv":[0.03076923076923077,0,0.9743589743589743,0,0.03076923076923077,0.9595959595959596,0.9743589743589743,0.9595959595959596],"minPos":{"x":-92,"y":-95,"z":0},"maxPos":{"x":92,"y":95,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[0],0,[0],[0],[0]]
|
@ -0,0 +1 @@
|
||||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]]
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user