This commit is contained in:
2024-07-17 16:14:14 +08:00
commit 2ef3bcf322
1817 changed files with 63826 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
[InternetShortcut]
URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template

View File

@@ -0,0 +1,34 @@
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
/** <%Name%> 模块 */
@ecs.register(`<%Name%>`)
export class <%Name%> extends ecs.Entity {
/** ---------- 数据层 ---------- */
// <%Name%>Model!: <%Name%>ModelComp;
/** ---------- 业务层 ---------- */
// <%Name%>Bll!: <%Name%>BllComp;
/** ---------- 视图层 ---------- */
// <%Name%>View!: <%Name%>ViewComp;
/** 实始添加的数据层组件 */
protected init() {
// this.addComponents<ecs.Comp>();
}
/** 模块资源释放 */
destroy() {
// 注: 自定义释放逻辑,视图层实现 ecs.IComp 接口的 ecs 组件需要手动释放
super.destroy();
}
}
/** <%Name%> 模块业务逻辑系统组件,如无业务逻辑处理可删除此对象 */
export class Ecs<%Name%>System extends ecs.System {
constructor() {
super();
// this.add(new ecs.ComblockSystem());
}
}

View File

@@ -0,0 +1,24 @@
import { ecs } from "../../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
/** 业务层对象 */
@ecs.register('<%Name%>')
export class <%Name%>Comp extends ecs.Comp {
/** 业务层组件移除时,重置所有数据为默认值 */
reset() {
}
}
/** 业务层业务逻辑处理对象 */
export class <%Name%>System extends ecs.ComblockSystem implements ecs.IEntityEnterSystem {
filter(): ecs.IMatcher {
return ecs.allOf(<%Name%>Comp);
}
entityEnter(e: ecs.Entity): void {
// 注:自定义业务逻辑
e.remove(<%Name%>Comp);
}
}

View File

@@ -0,0 +1,26 @@
import { ecs } from "../../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { VM } from "../../../../../extensions/oops-plugin-framework/assets/libs/model-view/ViewModel";
/** 数据层对象 */
@ecs.register('<%Name%>')
export class <%Name%>Comp extends ecs.Comp {
/** 提供 MVVM 组件使用的数据 */
private vm: any = {};
/** 显示数据添加到 MVVM 框架中监视 */
vmAdd() {
VM.add(this.vm, "<%Name%>");
}
/** 显示数据从 MVVM 框架中移除 */
vmRemove() {
VM.remove("<%Name%>");
}
/** 数据层组件移除时,重置所有数据为默认值 */
reset() {
for (var key in this.vm) {
delete this.vm[key];
}
}
}

View File

@@ -0,0 +1,23 @@
import { JsonUtil } from "../../../../../extensions/oops-plugin-framework/assets/core/utils/JsonUtil";
/** 策划 Excel 导出的 Json 静态数据 */
export class <%Name%> {
static TableName: string = "配置表文件名";
/** 静态表中一条数据 */
private data: any;
init(id: number) {
var table = JsonUtil.get(<%Name%>.TableName);
this.data = table[id];
this.id = id;
}
/** 数据唯一编号 */
id: number = 0;
/** 数据 */
// get test(): number {
// return this.data.test;
// }
}

View File

@@ -0,0 +1,29 @@
import { _decorator } from "cc";
import { ecs } from "../../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { CCComp } from "../../../../../extensions/oops-plugin-framework/assets/module/common/CCComp";
const { ccclass, property } = _decorator;
/** 视图层对象 */
@ccclass('<%Name%>Comp')
@ecs.register('<%Name%>', false)
export class <%Name%>Comp extends CCComp {
/** 视图层逻辑代码分离演示 */
start() {
// var entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
// this.on(ModuleEvent.Cmd, this.onHandler, this);
}
/** 全局消息逻辑处理 */
// private onHandler(event: string, args: any) {
// switch (event) {
// case ModuleEvent.Cmd:
// break;
// }
// }
/** 视图对象通过 ecs.Entity.remove(ModuleViewComp) 删除组件是触发组件处理自定义释放逻辑 */
reset() {
this.node.destroy();
}
}

View File

@@ -0,0 +1,23 @@
import { _decorator } from "cc";
import { ecs } from "../../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { CCVMParentComp } from "../../../../../extensions/oops-plugin-framework/assets/module/common/CCVMParentComp";
const { ccclass, property } = _decorator;
/** 视图层对象 - 支持 MVVM 框架的数据绑定 */
@ccclass('<%Name%>Comp')
@ecs.register('<%Name%>', false)
export class <%Name%>Comp extends CCVMParentComp {
/** 脚本控制的界面 MVVM 框架绑定数据 */
data: any = {};
/** 视图层逻辑代码分离演示 */
start() {
// var entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
}
/** 视图对象通过 ecs.Entity.remove(ModuleViewComp) 删除组件是触发组件处理自定义释放逻辑 */
reset() {
this.node.destroy();
}
}

22
.gitignore vendored Normal file
View File

@@ -0,0 +1,22 @@
#///////////////////////////
# Cocos Creator 3D Project
#///////////////////////////
library/
temp/
local/
build/
profiles/
native
#//////////////////////////
# NPM
#//////////////////////////
# VSCode
#//////////////////////////
.vscode/
#//////////////////////////
# WebStorm
#//////////////////////////
.idea/

0
README.md Normal file
View File

12
assets/res.meta Normal file
View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "fa09e102-2224-4bfa-875b-7b1f803df84b",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

12
assets/res/Env.meta Normal file
View File

@@ -0,0 +1,12 @@
{
"ver": "1.1.0",
"importer": "directory",
"imported": true,
"uuid": "7209ac00-fd6c-4ab3-9a7e-ac3b046f5b93",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

12
assets/res/common.meta Normal file
View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "29cc77ed-22e0-48a8-98cf-83162f08b619",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "6b6843d0-8531-40cd-a186-88a5d88b3c57",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

View File

@@ -0,0 +1,3 @@
{
"__type__": "cc.SpriteAtlas"
}

View File

@@ -0,0 +1,36 @@
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "f0251d8c-ee17-4a9b-a4fb-032723b62ee6",
"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": false,
"compressSettings": {},
"textureSetting": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 1
},
"removeTextureInBundle": false,
"removeImageInBundle": false,
"removeSpriteAtlasInBundle": false
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "f581195d-cc68-400c-88cb-7863e60c0ec1",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f581195d-cc68-400c-88cb-7863e60c0ec1@6c48a",
"displayName": "bg_window",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "f581195d-cc68-400c-88cb-7863e60c0ec1",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f581195d-cc68-400c-88cb-7863e60c0ec1@f9941",
"displayName": "bg_window",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 478,
"height": 320,
"rawWidth": 478,
"rawHeight": 320,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "f581195d-cc68-400c-88cb-7863e60c0ec1@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-239,
-160,
0,
239,
-160,
0,
-239,
160,
0,
239,
160,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
320,
478,
320,
0,
0,
478,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-239,
-160,
0
],
"maxPos": [
239,
160,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "f581195d-cc68-400c-88cb-7863e60c0ec1@f9941",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "16d030ec-0f1c-4eca-9252-06cb8af7a7ba",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "16d030ec-0f1c-4eca-9252-06cb8af7a7ba@6c48a",
"displayName": "btn_ok",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "16d030ec-0f1c-4eca-9252-06cb8af7a7ba",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "16d030ec-0f1c-4eca-9252-06cb8af7a7ba@f9941",
"displayName": "btn_ok",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 117,
"height": 53,
"rawWidth": 117,
"rawHeight": 53,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "16d030ec-0f1c-4eca-9252-06cb8af7a7ba@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-58.5,
-26.5,
0,
58.5,
-26.5,
0,
-58.5,
26.5,
0,
58.5,
26.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
53,
117,
53,
0,
0,
117,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-58.5,
-26.5,
0
],
"maxPos": [
58.5,
26.5,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "16d030ec-0f1c-4eca-9252-06cb8af7a7ba@f9941",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e@6c48a",
"displayName": "loading",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e@f9941",
"displayName": "loading",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 138,
"height": 138,
"rawWidth": 138,
"rawHeight": 138,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-69,
0,
69,
-69,
0,
-69,
69,
0,
69,
69,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
138,
138,
138,
0,
0,
138,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-69,
-69,
0
],
"maxPos": [
69,
69,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e@f9941",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.1.0",
"importer": "directory",
"imported": true,
"uuid": "d7a109d3-8659-4487-a915-2c38b3d88f58",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "b1d5a976-33cc-4622-a9da-a2385bee6cc4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b1d5a976-33cc-4622-a9da-a2385bee6cc4@6c48a",
"displayName": "toast",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "b1d5a976-33cc-4622-a9da-a2385bee6cc4",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "b1d5a976-33cc-4622-a9da-a2385bee6cc4@f9941",
"displayName": "toast",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 539,
"height": 90,
"rawWidth": 539,
"rawHeight": 90,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "b1d5a976-33cc-4622-a9da-a2385bee6cc4@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-269.5,
-45,
0,
269.5,
-45,
0,
-269.5,
45,
0,
269.5,
45,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
90,
539,
90,
0,
0,
539,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-269.5,
-45,
0
],
"maxPos": [
269.5,
45,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "b1d5a976-33cc-4622-a9da-a2385bee6cc4@f9941",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false
}
}

12
assets/res/loading.meta Normal file
View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "989ba6a5-5936-4360-802e-82a5a22158da",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "368cc198-75d7-4d6f-a3bc-69bd130e1cb1",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "591a4566-d2cc-4bb7-9f01-d5e0da5ca109",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "591a4566-d2cc-4bb7-9f01-d5e0da5ca109@6c48a",
"displayName": "bg",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "591a4566-d2cc-4bb7-9f01-d5e0da5ca109",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "591a4566-d2cc-4bb7-9f01-d5e0da5ca109@f9941",
"displayName": "bg",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1600,
"height": 720,
"rawWidth": 1600,
"rawHeight": 720,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "591a4566-d2cc-4bb7-9f01-d5e0da5ca109@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-800,
-360,
0,
800,
-360,
0,
-800,
360,
0,
800,
360,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
720,
1600,
720,
0,
0,
1600,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-800,
-360,
0
],
"maxPos": [
800,
360,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "591a4566-d2cc-4bb7-9f01-d5e0da5ca109@f9941",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "eb70eaa0-d0be-444d-a4fb-c5fd8aa403a1",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "eb70eaa0-d0be-444d-a4fb-c5fd8aa403a1@6c48a",
"displayName": "icon_loading_bar",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "eb70eaa0-d0be-444d-a4fb-c5fd8aa403a1",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "eb70eaa0-d0be-444d-a4fb-c5fd8aa403a1@f9941",
"displayName": "icon_loading_bar",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 549,
"height": 47,
"rawWidth": 549,
"rawHeight": 47,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "eb70eaa0-d0be-444d-a4fb-c5fd8aa403a1@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-274.5,
-23.5,
0,
274.5,
-23.5,
0,
-274.5,
23.5,
0,
274.5,
23.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
47,
549,
47,
0,
0,
549,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-274.5,
-23.5,
0
],
"maxPos": [
274.5,
23.5,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "eb70eaa0-d0be-444d-a4fb-c5fd8aa403a1@f9941",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,135 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "20d4c88f-d859-4182-86ae-97911159d643",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "20d4c88f-d859-4182-86ae-97911159d643@6c48a",
"displayName": "panel_loading_bottom_frame",
"id": "6c48a",
"name": "texture",
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "20d4c88f-d859-4182-86ae-97911159d643",
"visible": false
}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "20d4c88f-d859-4182-86ae-97911159d643@f9941",
"displayName": "panel_loading_bottom_frame",
"id": "f9941",
"name": "spriteFrame",
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 567,
"height": 65,
"rawWidth": 567,
"rawHeight": 65,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "20d4c88f-d859-4182-86ae-97911159d643@6c48a",
"atlasUuid": "",
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-283.5,
-32.5,
0,
283.5,
-32.5,
0,
-283.5,
32.5,
0,
283.5,
32.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
65,
567,
65,
0,
0,
567,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-283.5,
-32.5,
0
],
"maxPos": [
283.5,
32.5,
0
]
}
}
}
},
"userData": {
"type": "sprite-frame",
"redirect": "20d4c88f-d859-4182-86ae-97911159d643@f9941",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false
}
}

12
assets/res/model.meta Normal file
View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "b7b396ae-11c8-4556-92e1-5e9c3ef11e1f",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

12
assets/res/model/bow.meta Normal file
View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "e9a53d9b-c92a-4995-9407-a931d60ebab0",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "3ed713c9-7f50-413d-826a-a5ab6dd9f7ab",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,270 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"5f22b": {
"ver": "1.1.1",
"importer": "gltf-mesh",
"name": "Bowstring_Bow_0.mesh",
"id": "5f22b",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@5f22b",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"triangleCount": 144
}
},
"fe339": {
"ver": "1.1.1",
"importer": "gltf-mesh",
"name": "Bow_Bow_0.mesh",
"id": "fe339",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@fe339",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 1,
"triangleCount": 872
}
},
"fd280": {
"ver": "1.1.1",
"importer": "gltf-mesh",
"name": "Arrow_Arrow_0.mesh",
"id": "fd280",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@fd280",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 2,
"triangleCount": 164
}
},
"73b7f": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "Take 001.animation",
"id": "73b7f",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@73b7f",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 0.3333333432674408
},
"events": [],
"wrapMode": 2
}
},
"438fe": {
"ver": "1.0.1",
"importer": "gltf-skeleton",
"name": "UnnamedSkeleton.skeleton",
"id": "438fe",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@438fe",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"jointsLength": 8
}
},
"3effa": {
"ver": "1.0.22",
"importer": "texture",
"name": "UnnamedTexture-0.texture",
"id": "3effa",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@3effa",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "linear",
"premultiplyAlpha": false,
"anisotropy": 0,
"isUuid": false,
"imageUuidOrDatabaseUri": "db://assets/res/model/bow/textures/Arrow_baseColor.png"
}
},
"221a5": {
"ver": "1.0.22",
"importer": "texture",
"name": "UnnamedTexture-1.texture",
"id": "221a5",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@221a5",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "linear",
"premultiplyAlpha": false,
"anisotropy": 0,
"isUuid": false,
"imageUuidOrDatabaseUri": "db://assets/res/model/bow/textures/material_baseColor.png"
}
},
"222d4": {
"importer": "gltf-material",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@222d4",
"displayName": "",
"id": "222d4",
"name": "material.material",
"ver": "1.0.14",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
},
"8cbef": {
"importer": "gltf-material",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@8cbef",
"displayName": "",
"id": "8cbef",
"name": "Arrow.material",
"ver": "1.0.14",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 1
}
},
"d1932": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "scene.prefab",
"id": "d1932",
"displayName": "",
"uuid": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@d1932",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "Take 001",
"duration": 0.3333333432674408,
"fps": 30,
"splits": [
{
"name": "Take 001",
"from": 0,
"to": 0.3333333432674408,
"wrapMode": 2,
"previousId": "73b7f"
}
]
}
],
"redirect": "2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@d1932",
"assetFinder": {
"meshes": [
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@5f22b",
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@fe339",
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@fd280"
],
"skeletons": [
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@438fe"
],
"textures": [
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@3effa",
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@221a5"
],
"materials": [
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@222d4",
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@8cbef"
],
"scenes": [
"2f1b63f2-ae5f-4f0a-8c3d-f85f5f15400e@d1932"
]
},
"imageMetas": [
{
"uri": "db://assets/res/model/bow/textures/Arrow_baseColor.png"
},
{
"uri": "db://assets/res/model/bow/textures/material_baseColor.png"
}
],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "f73356f6-70d2-4233-aa68-c8701203ddcc",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@@ -0,0 +1,43 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "9109e13d-95c1-4eeb-b533-aa1b51d0eb47",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"ver": "1.0.22",
"importer": "texture",
"name": "texture",
"id": "6c48a",
"displayName": "Arrow_baseColor",
"uuid": "9109e13d-95c1-4eeb-b533-aa1b51d0eb47@6c48a",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "9109e13d-95c1-4eeb-b533-aa1b51d0eb47",
"visible": false
}
}
},
"userData": {
"type": "texture",
"redirect": "9109e13d-95c1-4eeb-b533-aa1b51d0eb47@6c48a",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View File

@@ -0,0 +1,43 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "ad0c69d3-dba7-4f90-858e-f7880fe5c938",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"ver": "1.0.22",
"importer": "texture",
"name": "texture",
"id": "6c48a",
"displayName": "material_baseColor",
"uuid": "ad0c69d3-dba7-4f90-858e-f7880fe5c938@6c48a",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"premultiplyAlpha": false,
"anisotropy": 1,
"isUuid": true,
"imageUuidOrDatabaseUri": "ad0c69d3-dba7-4f90-858e-f7880fe5c938",
"visible": false
}
}
},
"userData": {
"type": "texture",
"redirect": "ad0c69d3-dba7-4f90-858e-f7880fe5c938@6c48a",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "d8da52c6-0127-41a6-9611-3c7718363db2",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "6cd4e8c1-b63f-4bbb-b3db-b323fa08b435",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "Cocos"
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "75b08e51-53d1-4bca-b3de-ad7713d25d2c",
"files": [],
"subMetas": {},
"userData": {
"compressionType": {},
"isRemoteBundle": {}
}
}

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "73443895-6d8f-41b5-8e3f-4110d0f4dc31",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,109 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "a873a742-b503-4a96-8570-6fe542697035",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"57e42": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_attack.animation",
"id": "57e42",
"displayName": "",
"uuid": "a873a742-b503-4a96-8570-6fe542697035@57e42",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"events": [
{
"frame": 0.5,
"func": "onFrameEvent",
"params": [
"Attack"
]
}
],
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 1.3333333730697632
},
"wrapMode": 1,
"speed": 1
}
},
"325cb": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_attack.prefab",
"id": "325cb",
"displayName": "",
"uuid": "a873a742-b503-4a96-8570-6fe542697035@325cb",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_attack",
"duration": 1.3333333730697632,
"fps": 30,
"splits": [
{
"name": "cocos_anim_attack",
"from": 0,
"to": 1.3333333730697632,
"wrapMode": 1,
"previousId": "57e42"
}
]
}
],
"redirect": "a873a742-b503-4a96-8570-6fe542697035@325cb",
"assetFinder": {
"scenes": [
"a873a742-b503-4a96-8570-6fe542697035@325cb"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "d1a7cd09-b5d9-422f-a4f3-112d85f1059c",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,100 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "caf172df-03b7-4c5a-8a53-93f3e4be5146",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"5ecd9": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_die.animation",
"id": "5ecd9",
"displayName": "",
"uuid": "caf172df-03b7-4c5a-8a53-93f3e4be5146@5ecd9",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 1.6666667461395264
},
"events": [],
"wrapMode": 1
}
},
"578b6": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_die.prefab",
"id": "578b6",
"displayName": "",
"uuid": "caf172df-03b7-4c5a-8a53-93f3e4be5146@578b6",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_die",
"duration": 1.6666667461395264,
"fps": 30,
"splits": [
{
"name": "cocos_anim_die",
"from": 0,
"to": 1.6666667461395264,
"wrapMode": 1,
"previousId": "5ecd9"
}
]
}
],
"redirect": "caf172df-03b7-4c5a-8a53-93f3e4be5146@578b6",
"assetFinder": {
"scenes": [
"caf172df-03b7-4c5a-8a53-93f3e4be5146@578b6"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "fe407fd3-1b9c-4fb7-9a97-edb4cdae6314",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,101 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "27ac412c-9efa-4ead-8e2c-fe6533c7878f",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"96245": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_down.animation",
"id": "96245",
"displayName": "",
"uuid": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@96245",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"events": [],
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 2.633333444595337
},
"wrapMode": 2,
"speed": 1
}
},
"bce50": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_down.prefab",
"id": "bce50",
"displayName": "",
"uuid": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@bce50",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_down",
"duration": 2.633333444595337,
"fps": 30,
"splits": [
{
"name": "cocos_anim_down",
"from": 0,
"to": 2.633333444595337,
"wrapMode": 2,
"previousId": "96245"
}
]
}
],
"redirect": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@bce50",
"assetFinder": {
"scenes": [
"27ac412c-9efa-4ead-8e2c-fe6533c7878f@bce50"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "a1efb6ff-ef74-4037-8801-d310eca22fd5",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,100 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"51885": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_hurt.prefab",
"id": "51885",
"displayName": "",
"uuid": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@51885",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
},
"4cafd": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_hurt.animation",
"id": "4cafd",
"displayName": "",
"uuid": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@4cafd",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 0.5
},
"events": [],
"wrapMode": 2
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_hurt",
"duration": 0.5,
"fps": 30,
"splits": [
{
"name": "cocos_anim_hurt",
"from": 0,
"to": 0.5,
"wrapMode": 2,
"previousId": "4cafd"
}
]
}
],
"redirect": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@51885",
"assetFinder": {
"scenes": [
"cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@51885"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "e9d41da7-da95-4119-8a6c-0937de2adb57",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,101 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "445d5d9d-c56b-4528-bc90-c847357e5d94",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"ab65f": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_idle.animation",
"id": "ab65f",
"displayName": "",
"uuid": "445d5d9d-c56b-4528-bc90-c847357e5d94@ab65f",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"events": [],
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 3.000000238418579
},
"speed": 1,
"wrapMode": 2
}
},
"0ea50": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_idle.prefab",
"id": "0ea50",
"displayName": "",
"uuid": "445d5d9d-c56b-4528-bc90-c847357e5d94@0ea50",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_idle",
"duration": 3.000000238418579,
"fps": 30,
"splits": [
{
"name": "cocos_anim_idle",
"from": 0,
"to": 3.000000238418579,
"wrapMode": 2,
"previousId": "ab65f"
}
]
}
],
"redirect": "445d5d9d-c56b-4528-bc90-c847357e5d94@0ea50",
"assetFinder": {
"scenes": [
"445d5d9d-c56b-4528-bc90-c847357e5d94@0ea50"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "33a7dcc9-4eed-4d49-baac-d190c3d2a157",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,101 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "501da3c5-f2d8-45f7-bc04-5130d58811ff",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"cd579": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_jump.animation",
"id": "cd579",
"displayName": "",
"uuid": "501da3c5-f2d8-45f7-bc04-5130d58811ff@cd579",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"events": [],
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 1.6666667461395264
},
"speed": 1,
"wrapMode": 2
}
},
"645e0": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_jump.prefab",
"id": "645e0",
"displayName": "",
"uuid": "501da3c5-f2d8-45f7-bc04-5130d58811ff@645e0",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_jump",
"duration": 1.6666667461395264,
"fps": 30,
"splits": [
{
"name": "cocos_anim_jump",
"from": 0,
"to": 1.6666667461395264,
"wrapMode": 2,
"previousId": "cd579"
}
]
}
],
"redirect": "501da3c5-f2d8-45f7-bc04-5130d58811ff@645e0",
"assetFinder": {
"scenes": [
"501da3c5-f2d8-45f7-bc04-5130d58811ff@645e0"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "f1d8a0c8-d2d8-473f-a769-803842978f68",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,100 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "50735e20-7211-4e9c-b676-4d648cdc0cbb",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"b6423": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_run.animation",
"id": "b6423",
"displayName": "",
"uuid": "50735e20-7211-4e9c-b676-4d648cdc0cbb@b6423",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 0.8000000715255737
},
"events": [],
"wrapMode": 2
}
},
"6ebd2": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_run.prefab",
"id": "6ebd2",
"displayName": "",
"uuid": "50735e20-7211-4e9c-b676-4d648cdc0cbb@6ebd2",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_run",
"duration": 0.8000000715255737,
"fps": 30,
"splits": [
{
"name": "cocos_anim_run",
"from": 0,
"to": 0.8000000715255737,
"wrapMode": 2,
"previousId": "b6423"
}
]
}
],
"redirect": "50735e20-7211-4e9c-b676-4d648cdc0cbb@6ebd2",
"assetFinder": {
"scenes": [
"50735e20-7211-4e9c-b676-4d648cdc0cbb@6ebd2"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "a9e047be-e87a-43d9-bbd5-1b3f5dbe2026",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,100 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "1cf73293-3e10-49c1-bfa1-59daaadbd18b",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"b452c": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_shoot.animation",
"id": "b452c",
"displayName": "",
"uuid": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@b452c",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 1.3000000715255737
},
"events": [],
"wrapMode": 2
}
},
"7d7b5": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_shoot.prefab",
"id": "7d7b5",
"displayName": "",
"uuid": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@7d7b5",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_shoot",
"duration": 1.3000000715255737,
"fps": 30,
"splits": [
{
"name": "cocos_anim_shoot",
"from": 0,
"to": 1.3000000715255737,
"wrapMode": 2,
"previousId": "b452c"
}
]
}
],
"redirect": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@7d7b5",
"assetFinder": {
"scenes": [
"1cf73293-3e10-49c1-bfa1-59daaadbd18b@7d7b5"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "7290f264-a898-4355-8041-8514dbd0051f",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,101 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "58c9fdbf-de49-4141-83fa-9ad83f78591c",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"b940a": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_squat.animation",
"id": "b940a",
"displayName": "",
"uuid": "58c9fdbf-de49-4141-83fa-9ad83f78591c@b940a",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 1.8666667938232422
},
"events": [],
"wrapMode": 2,
"speed": 1
}
},
"6c8e7": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_squat.prefab",
"id": "6c8e7",
"displayName": "",
"uuid": "58c9fdbf-de49-4141-83fa-9ad83f78591c@6c8e7",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_squat",
"duration": 1.8666667938232422,
"fps": 30,
"splits": [
{
"name": "cocos_anim_squat",
"from": 0,
"to": 1.8666667938232422,
"wrapMode": 2,
"previousId": "b940a"
}
]
}
],
"redirect": "58c9fdbf-de49-4141-83fa-9ad83f78591c@6c8e7",
"assetFinder": {
"scenes": [
"58c9fdbf-de49-4141-83fa-9ad83f78591c@6c8e7"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "e08b2140-55f5-4d1f-af55-565183504a80",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,116 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "b1cb32e6-c8c9-40c9-9d52-119dae416b32",
"files": [
"__original-animation-0.cconb"
],
"subMetas": {
"0a7b5": {
"ver": "1.0.17",
"importer": "gltf-animation",
"name": "cocos_anim_walk.animation",
"id": "0a7b5",
"displayName": "",
"uuid": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@0a7b5",
"imported": true,
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"events": [
{
"frame": 0.3333333333333333,
"func": "onFrameEvent",
"params": [
"Walk"
]
},
{
"frame": 0.6666666666666666,
"func": "onFrameEvent",
"params": [
"Walk"
]
}
],
"gltfIndex": 0,
"sample": 30,
"span": {
"from": 0,
"to": 1.0666667222976685
},
"wrapMode": 2,
"speed": 1
}
},
"6ac0b": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_anim_walk.prefab",
"id": "6ac0b",
"displayName": "",
"uuid": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@6ac0b",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"animationImportSettings": [
{
"name": "cocos_anim_walk",
"duration": 1.0666667222976685,
"fps": 30,
"splits": [
{
"name": "cocos_anim_walk",
"from": 0,
"to": 1.0666667222976685,
"wrapMode": 2,
"previousId": "0a7b5"
}
]
}
],
"redirect": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@6ac0b",
"assetFinder": {
"scenes": [
"b1cb32e6-c8c9-40c9-9d52-119dae416b32@6ac0b"
],
"meshes": [],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

View File

@@ -0,0 +1,62 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"_native": "",
"_effectAsset": {
"__uuid__": "1baf0fc9-befa-459c-8bdd-af1a450a0319",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": "1",
"_defines": [
{
"USE_NORMAL_MAP": true,
"USE_ALBEDO_MAP": true,
"USE_OCCLUSION_MAP": true,
"USE_EMISSIVE_MAP": true
},
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {
"depthWrite": true
},
"blendState": {
"targets": [
{}
]
}
},
{},
{}
],
"_props": [
{
"mainTexture": {
"__uuid__": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a",
"__expectedType__": "cc.Texture2D"
},
"normalMap": {
"__uuid__": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a@6c48a",
"__expectedType__": "cc.Texture2D"
},
"metallicRoughnessMap": {
"__uuid__": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a@6c48a",
"__expectedType__": "cc.Texture2D"
},
"occlusionMap": {
"__uuid__": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a@6c48a",
"__expectedType__": "cc.Texture2D"
},
"emissiveMap": {
"__uuid__": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{},
{}
]
}

View File

@@ -0,0 +1,11 @@
{
"ver": "1.0.21",
"importer": "material",
"imported": true,
"uuid": "58cf3db3-e6f4-4943-a076-26157912429c",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,73 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"_native": "",
"_effectAsset": {
"__uuid__": "a7612b54-35e3-4238-a1a9-4a7b54635839",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{
"USE_OUTLINE_PASS": true
},
{
"USE_NORMAL_MAP": true,
"USE_BASE_COLOR_MAP": true,
"USE_EMISSIVE_MAP": true,
"BASE_COLOR_MAP_AS_SHADE_MAP_1": true,
"BASE_COLOR_MAP_AS_SHADE_MAP_2": true
},
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{},
{}
],
"_props": [
{},
{
"mainColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"normalMap": {
"__uuid__": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a",
"__expectedType__": "cc.Texture2D"
},
"mainTexture": {
"__uuid__": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a",
"__expectedType__": "cc.Texture2D"
},
"emissiveMap": {
"__uuid__": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{},
{}
]
}

View File

@@ -0,0 +1,11 @@
{
"ver": "1.0.21",
"importer": "material",
"imported": true,
"uuid": "f25c1b3b-c558-45ab-8f50-347859ff2330",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1 @@
{"asset":{"version":"2.0","generator":"Mesh@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"cocosfinish_01","mesh":0,"translation":[0.0,0.0,0.0],"rotation":[-0.0,-0.0,-0.0,1.0],"scale":[1.0,1.0,1.0]}],"meshes":[{"name":"cocosfinish_01","primitives":[{"attributes":{"POSITION":0,"NORMAL":1,"TEXCOORD_0":2,"JOINTS_0":3,"WEIGHTS_0":4},"indices":5,"mode":4}]}],"accessors":[{"name":"accessorPosition","bufferView":0,"componentType":5126,"count":5345,"type":"VEC3","max":[1.1280615329742432,4.430077075958252,0.6853569149971008],"min":[-1.1286969184875489,0.0004072114825248718,-0.9644851088523865]},{"name":"accessorNormal","bufferView":1,"componentType":5126,"count":5345,"type":"VEC3"},{"name":"accessorUV0","bufferView":2,"componentType":5126,"count":5345,"type":"VEC2"},{"name":"accessorJoints","bufferView":3,"componentType":5121,"count":5345,"type":"VEC4"},{"name":"accessorWeights","bufferView":4,"componentType":5126,"count":5345,"type":"VEC4"},{"name":"accessorIndices","bufferView":5,"componentType":5123,"count":17643,"type":"SCALAR"}],"bufferViews":[{"buffer":0,"name":"bufferViewPositionVec3F","byteLength":64140,"byteStride":12},{"buffer":0,"name":"bufferViewNormalVec3F","byteOffset":64140,"byteLength":64140,"byteStride":12},{"buffer":0,"name":"bufferViewUV0Vec2F","byteOffset":128280,"byteLength":42760,"byteStride":8},{"buffer":0,"name":"bufferViewJointsVec4UI8","byteOffset":171040,"byteLength":21380,"byteStride":4},{"buffer":0,"name":"bufferViewWeightsVec4F","byteOffset":192420,"byteLength":85520,"byteStride":16},{"buffer":0,"name":"bufferViewIndexScalar","byteOffset":277940,"byteLength":35286}],"buffers":[{"name":"cocos_mesh","uri":"cocosfinish_01.bin","byteLength":313226}]}

View File

@@ -0,0 +1,79 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698",
"files": [],
"subMetas": {
"a865e": {
"ver": "1.1.1",
"importer": "gltf-mesh",
"name": "cocosfinish_01.mesh",
"id": "a865e",
"displayName": "",
"uuid": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@a865e",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"triangleCount": 5881
}
},
"e69d3": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_mesh.prefab",
"id": "e69d3",
"displayName": "",
"uuid": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@e69d3",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"redirect": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@e69d3",
"assetFinder": {
"meshes": [
"5bee9f0c-9771-4e73-b0ea-0bbb6da67698@a865e"
],
"scenes": [
"5bee9f0c-9771-4e73-b0ea-0bbb6da67698@e69d3"
],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

View File

@@ -0,0 +1 @@
{"asset":{"version":"2.0","generator":"Mesh@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"cocosfinish_02","mesh":0,"translation":[0.0,0.0,0.0],"rotation":[-0.0,-0.0,-0.0,1.0],"scale":[1.0,1.0,1.0]}],"meshes":[{"name":"cocosfinish_02","primitives":[{"attributes":{"POSITION":0,"NORMAL":1,"TEXCOORD_0":2,"JOINTS_0":3,"WEIGHTS_0":4},"indices":5,"mode":4}]}],"accessors":[{"name":"accessorPosition","bufferView":0,"componentType":5126,"count":161,"type":"VEC3","max":[0.8866991400718689,4.560068130493164,0.8987413048744202],"min":[-0.8866992592811585,2.8476545810699465,-0.8987371921539307]},{"name":"accessorNormal","bufferView":1,"componentType":5126,"count":161,"type":"VEC3"},{"name":"accessorUV0","bufferView":2,"componentType":5126,"count":161,"type":"VEC2"},{"name":"accessorJoints","bufferView":3,"componentType":5121,"count":161,"type":"VEC4"},{"name":"accessorWeights","bufferView":4,"componentType":5126,"count":161,"type":"VEC4"},{"name":"accessorIndices","bufferView":5,"componentType":5123,"count":912,"type":"SCALAR"}],"bufferViews":[{"buffer":0,"name":"bufferViewPositionVec3F","byteLength":1932,"byteStride":12},{"buffer":0,"name":"bufferViewNormalVec3F","byteOffset":1932,"byteLength":1932,"byteStride":12},{"buffer":0,"name":"bufferViewUV0Vec2F","byteOffset":3864,"byteLength":1288,"byteStride":8},{"buffer":0,"name":"bufferViewJointsVec4UI8","byteOffset":5152,"byteLength":644,"byteStride":4},{"buffer":0,"name":"bufferViewWeightsVec4F","byteOffset":5796,"byteLength":2576,"byteStride":16},{"buffer":0,"name":"bufferViewIndexScalar","byteOffset":8372,"byteLength":1824}],"buffers":[{"name":"cocos_mesh_helmet","uri":"cocosfinish_02.bin","byteLength":10196}]}

View File

@@ -0,0 +1,79 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "fb9825a0-fd7f-48c5-b121-9af90f9f2011",
"files": [],
"subMetas": {
"72704": {
"ver": "1.1.1",
"importer": "gltf-mesh",
"name": "cocosfinish_02.mesh",
"id": "72704",
"displayName": "",
"uuid": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@72704",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"triangleCount": 304
}
},
"28c31": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_mesh_helmet.prefab",
"id": "28c31",
"displayName": "",
"uuid": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@28c31",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"redirect": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@28c31",
"assetFinder": {
"meshes": [
"fb9825a0-fd7f-48c5-b121-9af90f9f2011@72704"
],
"scenes": [
"fb9825a0-fd7f-48c5-b121-9af90f9f2011@28c31"
],
"skeletons": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,78 @@
{
"ver": "2.3.12",
"importer": "gltf",
"imported": true,
"uuid": "90f86573-5baf-41e2-97db-8604d1f42b65",
"files": [],
"subMetas": {
"a9630": {
"ver": "1.0.1",
"importer": "gltf-skeleton",
"name": "cocos_skel.skeleton",
"id": "a9630",
"displayName": "",
"uuid": "90f86573-5baf-41e2-97db-8604d1f42b65@a9630",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0,
"jointsLength": 52
}
},
"41e97": {
"ver": "1.0.14",
"importer": "gltf-scene",
"name": "cocos_skel.prefab",
"id": "41e97",
"displayName": "",
"uuid": "90f86573-5baf-41e2-97db-8604d1f42b65@41e97",
"imported": true,
"files": [
".json"
],
"subMetas": {},
"userData": {
"gltfIndex": 0
}
}
},
"userData": {
"normals": 2,
"tangents": 2,
"dumpMaterials": false,
"redirect": "90f86573-5baf-41e2-97db-8604d1f42b65@41e97",
"assetFinder": {
"skeletons": [
"90f86573-5baf-41e2-97db-8604d1f42b65@a9630"
],
"scenes": [
"90f86573-5baf-41e2-97db-8604d1f42b65@41e97"
],
"meshes": [],
"textures": [],
"materials": []
},
"imageMetas": [],
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"ver": "1.0.3",
"importer": "buffer",
"imported": true,
"uuid": "8d2d3098-6841-41fc-af7f-4bac9e32b080",
"files": [
".bin",
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

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