commit 2ef3bcf32245e7c88fa6f142d118012afd566e58 Author: pan@work Date: Wed Jul 17 16:14:14 2024 +0800 first diff --git a/.creator/asset-template/typescript/Custom Script Template Help Documentation.url b/.creator/asset-template/typescript/Custom Script Template Help Documentation.url new file mode 100644 index 00000000..7606df06 --- /dev/null +++ b/.creator/asset-template/typescript/Custom Script Template Help Documentation.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template \ No newline at end of file diff --git a/.creator/asset-template/typescript/Module.ts b/.creator/asset-template/typescript/Module.ts new file mode 100644 index 00000000..b05c18ee --- /dev/null +++ b/.creator/asset-template/typescript/Module.ts @@ -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(); + } + + /** 模块资源释放 */ + destroy() { + // 注: 自定义释放逻辑,视图层实现 ecs.IComp 接口的 ecs 组件需要手动释放 + super.destroy(); + } +} + +/** <%Name%> 模块业务逻辑系统组件,如无业务逻辑处理可删除此对象 */ +export class Ecs<%Name%>System extends ecs.System { + constructor() { + super(); + + // this.add(new ecs.ComblockSystem()); + } +} diff --git a/.creator/asset-template/typescript/ModuleBll.ts b/.creator/asset-template/typescript/ModuleBll.ts new file mode 100644 index 00000000..69c043d6 --- /dev/null +++ b/.creator/asset-template/typescript/ModuleBll.ts @@ -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); + } +} \ No newline at end of file diff --git a/.creator/asset-template/typescript/ModuleModel.ts b/.creator/asset-template/typescript/ModuleModel.ts new file mode 100644 index 00000000..849d799a --- /dev/null +++ b/.creator/asset-template/typescript/ModuleModel.ts @@ -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]; + } + } +} \ No newline at end of file diff --git a/.creator/asset-template/typescript/ModuleTable.ts b/.creator/asset-template/typescript/ModuleTable.ts new file mode 100644 index 00000000..1b360e70 --- /dev/null +++ b/.creator/asset-template/typescript/ModuleTable.ts @@ -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; + // } +} \ No newline at end of file diff --git a/.creator/asset-template/typescript/ModuleView.ts b/.creator/asset-template/typescript/ModuleView.ts new file mode 100644 index 00000000..d866a502 --- /dev/null +++ b/.creator/asset-template/typescript/ModuleView.ts @@ -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(); + } +} \ No newline at end of file diff --git a/.creator/asset-template/typescript/ModuleViewVM.ts b/.creator/asset-template/typescript/ModuleViewVM.ts new file mode 100644 index 00000000..ba31e106 --- /dev/null +++ b/.creator/asset-template/typescript/ModuleViewVM.ts @@ -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(); + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..19163ea8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ + +#/////////////////////////// +# Cocos Creator 3D Project +#/////////////////////////// +library/ +temp/ +local/ +build/ +profiles/ +native +#////////////////////////// +# NPM + +#////////////////////////// +# VSCode +#////////////////////////// +.vscode/ + +#////////////////////////// +# WebStorm +#////////////////////////// +.idea/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..e69de29b diff --git a/assets/res.meta b/assets/res.meta new file mode 100644 index 00000000..f0a78de3 --- /dev/null +++ b/assets/res.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "fa09e102-2224-4bfa-875b-7b1f803df84b", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/Env.meta b/assets/res/Env.meta new file mode 100644 index 00000000..7c71d60e --- /dev/null +++ b/assets/res/Env.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.1.0", + "importer": "directory", + "imported": true, + "uuid": "7209ac00-fd6c-4ab3-9a7e-ac3b046f5b93", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/common.meta b/assets/res/common.meta new file mode 100644 index 00000000..01828744 --- /dev/null +++ b/assets/res/common.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "29cc77ed-22e0-48a8-98cf-83162f08b619", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/common/texture.meta b/assets/res/common/texture.meta new file mode 100644 index 00000000..e719a7a3 --- /dev/null +++ b/assets/res/common/texture.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "6b6843d0-8531-40cd-a186-88a5d88b3c57", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/common/texture/auto-atlas.pac b/assets/res/common/texture/auto-atlas.pac new file mode 100644 index 00000000..39b3c029 --- /dev/null +++ b/assets/res/common/texture/auto-atlas.pac @@ -0,0 +1,3 @@ +{ + "__type__": "cc.SpriteAtlas" +} diff --git a/assets/res/common/texture/auto-atlas.pac.meta b/assets/res/common/texture/auto-atlas.pac.meta new file mode 100644 index 00000000..7e1cecbf --- /dev/null +++ b/assets/res/common/texture/auto-atlas.pac.meta @@ -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 + } +} diff --git a/assets/res/common/texture/bg_window.png b/assets/res/common/texture/bg_window.png new file mode 100644 index 00000000..873d8489 Binary files /dev/null and b/assets/res/common/texture/bg_window.png differ diff --git a/assets/res/common/texture/bg_window.png.meta b/assets/res/common/texture/bg_window.png.meta new file mode 100644 index 00000000..34246f01 --- /dev/null +++ b/assets/res/common/texture/bg_window.png.meta @@ -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 + } +} diff --git a/assets/res/common/texture/btn_ok.png b/assets/res/common/texture/btn_ok.png new file mode 100644 index 00000000..f5f1dd67 Binary files /dev/null and b/assets/res/common/texture/btn_ok.png differ diff --git a/assets/res/common/texture/btn_ok.png.meta b/assets/res/common/texture/btn_ok.png.meta new file mode 100644 index 00000000..c32c84b7 --- /dev/null +++ b/assets/res/common/texture/btn_ok.png.meta @@ -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 + } +} diff --git a/assets/res/common/texture/loading.png b/assets/res/common/texture/loading.png new file mode 100644 index 00000000..e72007fd Binary files /dev/null and b/assets/res/common/texture/loading.png differ diff --git a/assets/res/common/texture/loading.png.meta b/assets/res/common/texture/loading.png.meta new file mode 100644 index 00000000..957061cc --- /dev/null +++ b/assets/res/common/texture/loading.png.meta @@ -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 + } +} diff --git a/assets/res/common/texture/role.meta b/assets/res/common/texture/role.meta new file mode 100644 index 00000000..b2f0fe21 --- /dev/null +++ b/assets/res/common/texture/role.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.1.0", + "importer": "directory", + "imported": true, + "uuid": "d7a109d3-8659-4487-a915-2c38b3d88f58", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/common/texture/toast.png b/assets/res/common/texture/toast.png new file mode 100644 index 00000000..6d0e5096 Binary files /dev/null and b/assets/res/common/texture/toast.png differ diff --git a/assets/res/common/texture/toast.png.meta b/assets/res/common/texture/toast.png.meta new file mode 100644 index 00000000..e6f3766d --- /dev/null +++ b/assets/res/common/texture/toast.png.meta @@ -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 + } +} diff --git a/assets/res/loading.meta b/assets/res/loading.meta new file mode 100644 index 00000000..b76132c6 --- /dev/null +++ b/assets/res/loading.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "989ba6a5-5936-4360-802e-82a5a22158da", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/loading/texture.meta b/assets/res/loading/texture.meta new file mode 100644 index 00000000..af83cd17 --- /dev/null +++ b/assets/res/loading/texture.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "368cc198-75d7-4d6f-a3bc-69bd130e1cb1", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/loading/texture/bg.png b/assets/res/loading/texture/bg.png new file mode 100644 index 00000000..ef68e381 Binary files /dev/null and b/assets/res/loading/texture/bg.png differ diff --git a/assets/res/loading/texture/bg.png.meta b/assets/res/loading/texture/bg.png.meta new file mode 100644 index 00000000..319ac4d2 --- /dev/null +++ b/assets/res/loading/texture/bg.png.meta @@ -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 + } +} diff --git a/assets/res/loading/texture/icon_loading_bar.png b/assets/res/loading/texture/icon_loading_bar.png new file mode 100644 index 00000000..1edf32ee Binary files /dev/null and b/assets/res/loading/texture/icon_loading_bar.png differ diff --git a/assets/res/loading/texture/icon_loading_bar.png.meta b/assets/res/loading/texture/icon_loading_bar.png.meta new file mode 100644 index 00000000..3b46516a --- /dev/null +++ b/assets/res/loading/texture/icon_loading_bar.png.meta @@ -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 + } +} diff --git a/assets/res/loading/texture/panel_loading_bottom_frame.png b/assets/res/loading/texture/panel_loading_bottom_frame.png new file mode 100644 index 00000000..63648029 Binary files /dev/null and b/assets/res/loading/texture/panel_loading_bottom_frame.png differ diff --git a/assets/res/loading/texture/panel_loading_bottom_frame.png.meta b/assets/res/loading/texture/panel_loading_bottom_frame.png.meta new file mode 100644 index 00000000..a084ea47 --- /dev/null +++ b/assets/res/loading/texture/panel_loading_bottom_frame.png.meta @@ -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 + } +} diff --git a/assets/res/model.meta b/assets/res/model.meta new file mode 100644 index 00000000..da6e6ab1 --- /dev/null +++ b/assets/res/model.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b7b396ae-11c8-4556-92e1-5e9c3ef11e1f", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/model/bow.meta b/assets/res/model/bow.meta new file mode 100644 index 00000000..06af98a3 --- /dev/null +++ b/assets/res/model/bow.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "e9a53d9b-c92a-4995-9407-a931d60ebab0", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/model/bow/scene.bin b/assets/res/model/bow/scene.bin new file mode 100644 index 00000000..a8263c86 Binary files /dev/null and b/assets/res/model/bow/scene.bin differ diff --git a/assets/res/model/bow/scene.bin.meta b/assets/res/model/bow/scene.bin.meta new file mode 100644 index 00000000..24dc9dc9 --- /dev/null +++ b/assets/res/model/bow/scene.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "3ed713c9-7f50-413d-826a-a5ab6dd9f7ab", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/bow/scene.gltf b/assets/res/model/bow/scene.gltf new file mode 100644 index 00000000..1f6f6a80 --- /dev/null +++ b/assets/res/model/bow/scene.gltf @@ -0,0 +1,1089 @@ +{ + "accessors": [ + { + "bufferView": 3, + "componentType": 5126, + "count": 91, + "max": [ + 0.079786196351051331, + 35.064384460449219, + -8.4801292419433594 + ], + "min": [ + -0.77682554721832275, + -34.945381164550781, + -9.3449783325195312 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 1092, + "componentType": 5126, + "count": 91, + "max": [ + 1, + 0.0025110295973718166, + 1 + ], + "min": [ + -1, + -0.0025111273862421513, + -1 + ], + "type": "VEC3" + }, + { + "bufferView": 4, + "componentType": 5126, + "count": 91, + "max": [ + 1, + 6.757615483365953e-05, + 1, + 1 + ], + "min": [ + -1, + -2.0024570403620601e-05, + -1, + 1 + ], + "type": "VEC4" + }, + { + "bufferView": 2, + "componentType": 5126, + "count": 91, + "max": [ + 0.93600070476531982, + 0.95491045713424683 + ], + "min": [ + 0.90035462379455566, + 0.017274577170610428 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "componentType": 5125, + "count": 432, + "max": [ + 90 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 3, + "byteOffset": 2184, + "componentType": 5126, + "count": 868, + "max": [ + 4.1024537086486816, + 51.047515869140625, + 11.647316932678223 + ], + "min": [ + -4.1024537086486816, + -51.047515869140625, + -11.647316932678223 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 12600, + "componentType": 5126, + "count": 868, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": "VEC3" + }, + { + "bufferView": 4, + "byteOffset": 1456, + "componentType": 5126, + "count": 868, + "max": [ + 0.99978548288345337, + 0.99986833333969116, + 0.99733459949493408, + 1 + ], + "min": [ + -0.9999927282333374, + -0.99986833333969116, + -0.99999600648880005, + -1 + ], + "type": "VEC4" + }, + { + "bufferView": 2, + "byteOffset": 728, + "componentType": 5126, + "count": 868, + "max": [ + 0.82724016904830933, + 0.95453178882598877 + ], + "min": [ + 0.031469345092773438, + 0.0020000000949949026 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "byteOffset": 1728, + "componentType": 5125, + "count": 2616, + "max": [ + 867 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 3, + "byteOffset": 23016, + "componentType": 5126, + "count": 165, + "max": [ + 0.91746765375137329, + 28.423917770385742, + 0.96641659736633301 + ], + "min": [ + -0.91746765375137329, + -28.423915863037109, + -0.96640783548355103 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 24996, + "componentType": 5126, + "count": 165, + "max": [ + 1, + 1, + 0.98480784893035889 + ], + "min": [ + -1, + -1, + -0.98480790853500366 + ], + "type": "VEC3" + }, + { + "bufferView": 4, + "byteOffset": 15344, + "componentType": 5126, + "count": 165, + "max": [ + 1, + 1, + 0.33210942149162292, + 1 + ], + "min": [ + -1, + -0.9999498724937439, + -1, + -1 + ], + "type": "VEC4" + }, + { + "bufferView": 2, + "byteOffset": 7672, + "componentType": 5126, + "count": 165, + "max": [ + 0.97424542903900146, + 0.94641178846359253 + ], + "min": [ + 0.015852294862270355, + 0.019893698394298553 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "byteOffset": 12192, + "componentType": 5125, + "count": 492, + "max": [ + 164 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 5, + "componentType": 5126, + "count": 8, + "max": [ + 1, + 8.7422783678903215e-08, + 1.7881393432617188e-07, + 0, + 7.4505770442101493e-09, + 1, + 1.0000001192092896, + 0, + 8.7422776573475858e-08, + 0, + 1, + 0, + 5.7877373365045059e-06, + 0, + 33.630496978759766, + 1 + ], + "min": [ + 3.9480806890423992e-07, + -1.0000001192092896, + -7.4505539515712371e-09, + 0, + -1.7881394853702659e-07, + 8.7422776573475858e-08, + 0, + 0, + -1, + -1, + 6.8391025806989469e-14, + 0, + -9.08050537109375, + -47.438636779785156, + -35.598155975341797, + 1 + ], + "type": "MAT4" + }, + { + "bufferView": 0, + "componentType": 5123, + "count": 91, + "max": [ + 6, + 6, + 6, + 6 + ], + "min": [ + 2, + 6, + 6, + 6 + ], + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 17984, + "componentType": 5126, + "count": 91, + "max": [ + 1, + 0, + 0, + 0 + ], + "min": [ + 1, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 728, + "componentType": 5123, + "count": 868, + "max": [ + 1, + 1, + 1, + 1 + ], + "min": [ + 1, + 1, + 1, + 1 + ], + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 19440, + "componentType": 5126, + "count": 868, + "max": [ + 1, + 0, + 0, + 0 + ], + "min": [ + 1, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "componentType": 5126, + "count": 10, + "max": [ + 0.3333333432674408 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "componentType": 5126, + "count": 10, + "max": [ + 3.3612720926612383e-06, + 0.24435810744762421, + -0.090332627296447754 + ], + "min": [ + 3.3612720926612383e-06, + -38.358131408691406, + -0.090332627296447754 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 40, + "componentType": 5126, + "count": 2, + "max": [ + 0.3333333432674408 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 120, + "componentType": 5126, + "count": 2, + "max": [ + 1, + 0.99999994039535522, + 1.0000001192092896 + ], + "min": [ + 1, + 0.99999994039535522, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 48, + "componentType": 5126, + "count": 2, + "max": [ + 0.3333333432674408 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "componentType": 5126, + "count": 2, + "max": [ + -1.0857387877649671e-07, + 1.6924593637668295e-07, + 0.70710670948028564, + 0.7071068286895752 + ], + "min": [ + -1.0857387877649671e-07, + 1.6924593637668295e-07, + 0.70710670948028564, + 0.7071068286895752 + ], + "type": "VEC4" + } + ], + "animations": [ + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 2, + "target": { + "node": 12, + "path": "rotation" + } + } + ], + "name": "Take 001", + "samplers": [ + { + "input": 20, + "interpolation": "LINEAR", + "output": 21 + }, + { + "input": 22, + "interpolation": "LINEAR", + "output": 23 + }, + { + "input": 24, + "interpolation": "LINEAR", + "output": 25 + } + ] + } + ], + "asset": { + "extras": { + "author": "conn0 (https://sketchfab.com/conn0)", + "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)", + "source": "https://sketchfab.com/models/75978e5d4f9e467f8f685f166c87b966", + "title": "Bow and Arrow (Rigged) (Free Download)" + }, + "generator": "Sketchfab-3.17.1", + "version": "2.0" + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 7672, + "byteOffset": 0, + "byteStride": 8, + "name": "shortBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 14160, + "byteOffset": 7672, + "name": "floatBufferViews", + "target": 34963 + }, + { + "buffer": 0, + "byteLength": 8992, + "byteOffset": 21832, + "byteStride": 8, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 26976, + "byteOffset": 30824, + "byteStride": 12, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 33328, + "byteOffset": 57800, + "byteStride": 16, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 512, + "byteOffset": 91128, + "byteStride": 64, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 56, + "byteOffset": 91640, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 144, + "byteOffset": 91696, + "byteStride": 12, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 91840, + "byteStride": 16, + "name": "floatBufferViews" + } + ], + "buffers": [ + { + "byteLength": 91872, + "uri": "scene.bin" + } + ], + "images": [ + { + "uri": "textures/Arrow_baseColor.png" + }, + { + "uri": "textures/material_baseColor.png" + } + ], + "materials": [ + { + "doubleSided": true, + "emissiveFactor": [ + 0, + 0, + 0 + ], + "name": "material", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, + 1, + 1, + 1 + ], + "baseColorTexture": { + "index": 1, + "texCoord": 0 + }, + "metallicFactor": 0, + "roughnessFactor": 0.59999999999999998 + } + }, + { + "doubleSided": true, + "emissiveFactor": [ + 0, + 0, + 0 + ], + "name": "Arrow", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, + 1, + 1, + 1 + ], + "baseColorTexture": { + "index": 0, + "texCoord": 0 + }, + "metallicFactor": 0, + "roughnessFactor": 0.59999999999999998 + } + } + ], + "meshes": [ + { + "name": "Bowstring_Bow_0", + "primitives": [ + { + "attributes": { + "JOINTS_0": 16, + "NORMAL": 1, + "POSITION": 0, + "TANGENT": 2, + "TEXCOORD_0": 3, + "WEIGHTS_0": 17 + }, + "indices": 4, + "material": 0, + "mode": 4 + } + ] + }, + { + "name": "Bow_Bow_0", + "primitives": [ + { + "attributes": { + "JOINTS_0": 18, + "NORMAL": 6, + "POSITION": 5, + "TANGENT": 7, + "TEXCOORD_0": 8, + "WEIGHTS_0": 19 + }, + "indices": 9, + "material": 0, + "mode": 4 + } + ] + }, + { + "name": "Arrow_Arrow_0", + "primitives": [ + { + "attributes": { + "NORMAL": 11, + "POSITION": 10, + "TANGENT": 12, + "TEXCOORD_0": 13 + }, + "indices": 14, + "material": 1, + "mode": 4 + } + ] + } + ], + "nodes": [ + { + "children": [ + 1 + ], + "name": "RootNode (gltf orientation matrix)", + "rotation": [ + -0.70710678118654746, + -0, + -0, + 0.70710678118654757 + ] + }, + { + "children": [ + 2 + ], + "name": "RootNode (model correction matrix)" + }, + { + "children": [ + 3 + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Bow and Arrow.FBX" + }, + { + "children": [ + 4 + ], + "name": "" + }, + { + "children": [ + 5 + ], + "name": "RootNode" + }, + { + "children": [ + 6, + 8, + 10, + 7, + 9, + 18, + 19, + 20, + 21 + ], + "name": "" + }, + { + "children": [ + 11 + ], + "name": "_rootJoint" + }, + { + "matrix": [ + 0.99999999999997047, + 4.768371582031241e-07, + 5.3644181161110686e-07, + 0, + 5.3644181161110802e-07, + 2.8482945886649954e-14, + -0.99999999999997335, + 0, + -4.7683715820301679e-07, + 1.0000000000000011, + -2.2731244310327493e-13, + 0, + -3.7696227650485801e-06, + 5.2580159735741972e-13, + 7.905471801758317, + 1 + ], + "name": "" + }, + { + "mesh": 0, + "name": "", + "skin": 0 + }, + { + "matrix": [ + 1.0000000000000002, + -5.2939559203393771e-23, + 5.3299494346340773e-23, + 0, + 5.3299494346344534e-23, + 7.1115505915967399e-14, + -1.0000000000000002, + 0, + 5.293955920338998e-23, + 1.0000000000000002, + 7.1115505915967399e-14, + 0, + 2.1639044824387204e-21, + -5.5511151231257827e-16, + 7.815970093361102e-14, + 1 + ], + "name": "" + }, + { + "mesh": 1, + "name": "", + "skin": 0 + }, + { + "children": [ + 12, + 14, + 16 + ], + "name": "DummyRoot_00", + "rotation": [ + -0.70710676908493042, + -2.7021174756953386e-15, + -6.1817239327410789e-08, + 0.7071068286895752 + ], + "translation": [ + 0, + 0.55207061767578125, + -47.438636779785156 + ] + }, + { + "children": [ + 13 + ], + "name": "DummyMiddle_02", + "rotation": [ + -1.0857387877649671e-07, + 1.6924593637668295e-07, + 0.70710670948028564, + 0.7071068286895752 + ], + "scale": [ + 1, + 0.99999994039535522, + 1.0000001192092896 + ], + "translation": [ + 3.3612718652875628e-06, + -38.358131408691406, + -0.090332597494125366 + ] + }, + { + "name": "BowMiddle_01", + "rotation": [ + 3.271115076586284e-07, + 0.7071068286895752, + 0.70710676908493042, + 4.2325905269535724e-07 + ], + "scale": [ + 0.99999946355819702, + 1.0000003576278687, + 1.0000004768371582 + ], + "translation": [ + 1.9633350372314453, + 1.52587890625e-05, + -0.094474345445632935 + ] + }, + { + "children": [ + 15 + ], + "name": "DummyTop_03", + "rotation": [ + 4.1970277919745058e-08, + 4.5695596639916403e-08, + 7.5521867870520509e-08, + 1 + ], + "scale": [ + 1, + 1, + 1.0000001192092896 + ], + "translation": [ + 2.8954764275113121e-07, + -38.358127593994141, + 35.046096801757812 + ] + }, + { + "name": "BowTop_04", + "rotation": [ + 0.70219266414642334, + 0.083228558301925659, + -0.7021908164024353, + 0.083226710557937622 + ], + "scale": [ + 0.9999995231628418, + 1.0000007152557373, + 1.0000003576278687 + ], + "translation": [ + -4.0491781874152366e-06, + -0.13876914978027344, + 2.3699073791503906 + ] + }, + { + "children": [ + 17 + ], + "name": "DummyBottom_05", + "rotation": [ + 1.611795852340947e-07, + -4.743665726891777e-08, + 7.5318155268178089e-08, + 1 + ], + "scale": [ + 1.0000001192092896, + 0.99999994039535522, + 0.99999988079071045 + ], + "translation": [ + 2.5270110199926421e-06, + -38.358131408691406, + -34.18255615234375 + ] + }, + { + "name": "BowBottom_06", + "rotation": [ + 2.0323109310993459e-06, + -0.70710664987564087, + 2.0323100216046441e-06, + 0.70710694789886475 + ], + "scale": [ + 1.0000003576278687, + 1, + 0.9999995231628418 + ], + "translation": [ + 7.322664896491915e-05, + -0.011166572570800781, + -2.2915191650390625 + ] + }, + { + "name": "Bowstring", + "rotation": [ + -0.7071068286895752, + -3.3717481073836097e-07, + -1.9128735842222029e-20, + 0.7071068286895752 + ], + "translation": [ + -4.7232970246113837e-06, + 0, + 7.9054718017578125 + ] + }, + { + "name": "Bow", + "rotation": [ + -0.7071068286895752, + -0, + 0, + 0.7071068286895752 + ], + "translation": [ + 0, + -3.8518598887744717e-34, + 8.8430314232248314e-14 + ] + }, + { + "name": "Arrow", + "rotation": [ + -0.70707553625106812, + 0.0066500981338322163, + 0.0066500981338322163, + 0.70707553625106812 + ], + "translation": [ + -31.635715484619141, + 0, + 24.979042053222656 + ] + }, + { + "children": [ + 22 + ], + "name": "Arrow", + "rotation": [ + -0.7071068286895752, + -0, + 0, + 0.7071068286895752 + ], + "translation": [ + -2.1215591430664062, + 0.66166985034942627, + 19.419267654418945 + ] + }, + { + "children": [ + 23 + ], + "matrix": [ + 1, + 0, + -0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + -9.5367431640625e-07, + -4.3809413909912101e-06, + 1 + ], + "name": "" + }, + { + "mesh": 2, + "name": "Arrow_Arrow_0" + } + ], + "samplers": [ + { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + ], + "scene": 0, + "scenes": [ + { + "name": "OSG_Scene", + "nodes": [ + 0 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 15, + "joints": [ + 6, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "skeleton": 6 + } + ], + "textures": [ + { + "sampler": 0, + "source": 0 + }, + { + "sampler": 0, + "source": 1 + } + ] +} + diff --git a/assets/res/model/bow/scene.gltf.meta b/assets/res/model/bow/scene.gltf.meta new file mode 100644 index 00000000..4aebaa16 --- /dev/null +++ b/assets/res/model/bow/scene.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/bow/textures.meta b/assets/res/model/bow/textures.meta new file mode 100644 index 00000000..ee53ae87 --- /dev/null +++ b/assets/res/model/bow/textures.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "f73356f6-70d2-4233-aa68-c8701203ddcc", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/model/bow/textures/Arrow_baseColor.png b/assets/res/model/bow/textures/Arrow_baseColor.png new file mode 100644 index 00000000..da629552 Binary files /dev/null and b/assets/res/model/bow/textures/Arrow_baseColor.png differ diff --git a/assets/res/model/bow/textures/Arrow_baseColor.png.meta b/assets/res/model/bow/textures/Arrow_baseColor.png.meta new file mode 100644 index 00000000..416e9cd9 --- /dev/null +++ b/assets/res/model/bow/textures/Arrow_baseColor.png.meta @@ -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 + } +} diff --git a/assets/res/model/bow/textures/material_baseColor.png b/assets/res/model/bow/textures/material_baseColor.png new file mode 100644 index 00000000..25f1ed14 Binary files /dev/null and b/assets/res/model/bow/textures/material_baseColor.png differ diff --git a/assets/res/model/bow/textures/material_baseColor.png.meta b/assets/res/model/bow/textures/material_baseColor.png.meta new file mode 100644 index 00000000..4b65da83 --- /dev/null +++ b/assets/res/model/bow/textures/material_baseColor.png.meta @@ -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 + } +} diff --git a/assets/res/model/cocos.meta b/assets/res/model/cocos.meta new file mode 100644 index 00000000..94afa049 --- /dev/null +++ b/assets/res/model/cocos.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d8da52c6-0127-41a6-9611-3c7718363db2", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/model/cocos/Cocos.prefab b/assets/res/model/cocos/Cocos.prefab new file mode 100644 index 00000000..cd283056 --- /dev/null +++ b/assets/res/model/cocos/Cocos.prefab @@ -0,0 +1,3196 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "Cocos", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "Cocos", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 12 + } + ], + "_active": true, + "_components": [ + { + "__id__": 116 + } + ], + "_prefab": { + "__id__": 118 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -1, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0.7071067811865475, + "z": 0, + "w": 0.7071067811865476 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 90, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Helmet", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 6 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0.078 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.SkinnedMeshRenderer", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7e81a899-6c7c-493d-80cf-e4f730e4f48f" + } + ], + "_visFlags": 0, + "lightmapSettings": { + "__id__": 4 + }, + "_mesh": { + "__uuid__": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@72704" + }, + "_shadowCastingMode": 0, + "_enableMorph": true, + "_skeleton": { + "__uuid__": "90f86573-5baf-41e2-97db-8604d1f42b65@a9630" + }, + "_skinningRoot": { + "__id__": 1 + }, + "_id": "", + "__prefab": { + "__id__": 5 + } + }, + { + "__type__": "cc.ModelBakeSettings", + "texture": null, + "uvParam": { + "__type__": "cc.Vec4", + "x": 0, + "y": 0, + "z": 0, + "w": 0 + }, + "_bakeable": false, + "_castShadow": false, + "_recieveShadow": false, + "_lightmapSize": 64 + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "92xwwhQjdID5ScncMI8NP3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08w+mQintPPJni7B5pVUA9" + }, + { + "__type__": "cc.Node", + "_name": "Body", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 11 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.SkinnedMeshRenderer", + "_name": "Body", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "58cf3db3-e6f4-4943-a076-26157912429c" + }, + { + "__uuid__": "58cf3db3-e6f4-4943-a076-26157912429c" + }, + { + "__uuid__": "58cf3db3-e6f4-4943-a076-26157912429c" + }, + { + "__uuid__": "58cf3db3-e6f4-4943-a076-26157912429c" + } + ], + "_visFlags": 0, + "lightmapSettings": { + "__id__": 9 + }, + "_mesh": { + "__uuid__": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@a865e" + }, + "_shadowCastingMode": 1, + "_enableMorph": true, + "_skeleton": { + "__uuid__": "90f86573-5baf-41e2-97db-8604d1f42b65@a9630" + }, + "_skinningRoot": { + "__id__": 1 + }, + "_id": "", + "__prefab": { + "__id__": 10 + } + }, + { + "__type__": "cc.ModelBakeSettings", + "texture": null, + "uvParam": { + "__type__": "cc.Vec4", + "x": 0, + "y": 0, + "z": 0, + "w": 0 + }, + "_bakeable": false, + "_castShadow": false, + "_recieveShadow": false, + "_lightmapSize": 64 + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b9xOWkvzlF1IwwZ9WspQYX" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5+3Gei8tMXZoufi9OMMmd" + }, + { + "__type__": "cc.Node", + "_name": "Bip002", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 13 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 115 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1.4394174814224243, + "z": 0.018384279683232307 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": -0.7071062745468981, + "z": 0, + "w": 0.707107287825834 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999999403953551, + "y": 1, + "z": 0.9999999403953551 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": -89.99991789555972, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 Pelvis", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [ + { + "__id__": 14 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 114 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.49999930709576956, + "y": -0.49999999254917427, + "z": 0.49999999254917427, + "w": 0.5000007078049009 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": -89.99983949055928, + "z": 90 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 Spine", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 15 + }, + { + "__id__": 97 + }, + { + "__id__": 105 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 113 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.252804160118103, + "y": 3.5096945794066414e-7, + "z": 0.0002744346857070923 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.0000020804759106072992, + "y": 0.0003981590192705819, + "z": 6.93676086032503e-7, + "w": 0.9999999207322898 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -0.00023843660864713534, + "y": 0.04562566412936542, + "z": 0.00007939449476443857 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 Spine1", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [ + { + "__id__": 16 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 96 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.3447195291519165, + "y": -9.74392122543577e-10, + "z": 0.0003513079136610031 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -2.7546581747168357e-14, + "y": -0.03077978788265575, + "z": -8.537083465802896e-8, + "w": 0.999526190081026 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -3.011149572685769e-7, + "y": -3.5276610445001966, + "z": -0.000009778141764872751 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 Neck", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [ + { + "__id__": 17 + }, + { + "__id__": 55 + }, + { + "__id__": 93 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 95 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.665433406829834, + "y": -4.1106318349193316e-10, + "z": 0.0001481771469116211 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -2.669600780358255e-15, + "y": 0.06157424794471617, + "z": 1.7078236050205865e-7, + "w": 0.9981025057527976 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -0.000001205021695781177, + "y": 7.060355294193349, + "z": 0.000019533082551195423 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Clavicle", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 18 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 54 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.23000192642211914, + "y": 0.22659029066562653, + "z": 0.028323352336883545 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.6361306084451803, + "y": -0.7690886582797952, + "z": -0.039499043019708864, + "w": -0.04775259474705402 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999999403953552, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -0.0008424411902544296, + "y": 172.89484678972258, + "z": 79.18984857171966 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L UpperArm", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 19 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 53 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.26367461681365967, + "y": 0, + "z": -1.4901161193847656e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.03357857419689301, + "y": -0.0398420723278534, + "z": -0.37206974115274943, + "w": 0.9267411700933825 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 2.58846521639648, + "y": -3.8824087528549023, + "z": -43.81248042439644 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Forearm", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 20 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 52 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.5116827487945557, + "y": 0, + "z": 7.450580596923828e-9 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 3.595055336630338e-9, + "y": -0.12936039168638325, + "z": -8.65297959901121e-9, + "w": 0.9915976447444527 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999998807907104, + "y": 1.0000001192092896, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 2.802331504559222e-7, + "y": -14.8652667455545, + "z": -0.0000010365186908483014 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Hand", + "_objFlags": 0, + "_parent": { + "__id__": 19 + }, + "_children": [ + { + "__id__": 21 + }, + { + "__id__": 27 + }, + { + "__id__": 33 + }, + { + "__id__": 39 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 51 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.47114282846450806, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.7817653287697258, + "y": 0.1683952333366485, + "z": -0.08155837519558504, + "w": 0.5948396822325442 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -104.63046774967047, + "y": 4.477105279013093, + "z": -21.119814351765044 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger0", + "_objFlags": 0, + "_parent": { + "__id__": 20 + }, + "_children": [ + { + "__id__": 22 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 26 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06814885139465332, + "y": -0.1017833948135376, + "z": -0.06761693954467773 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.6496226701202772, + "y": 0.13313679220106886, + "z": -0.27934604511816163, + "w": 0.6944283750719386 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999998211860657, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 90.00514239541948, + "y": 34.12255839711849, + "z": -12.415191931135967 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger01", + "_objFlags": 0, + "_parent": { + "__id__": 21 + }, + "_children": [ + { + "__id__": 23 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 25 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.07074236869812012, + "y": 5.960464477539063e-8, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -6.301759601313711e-9, + "y": 0.11640221704419262, + "z": 1.7627159851268195e-9, + "w": 0.9932021565961265 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999998807907104, + "z": 1.0000001192092896 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -7.407319011787383e-7, + "y": 13.36901877485849, + "z": 1.1656190691351391e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger02", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 24 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.07074201107025146, + "y": -1.1920928955078125e-7, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 1.8324129233223919e-9, + "y": 0.06414267544090939, + "z": -3.0466139086633286e-9, + "w": 0.9979407383142961 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 0.9999998211860657, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 2.3193990135916585e-7, + "y": 7.35525867313462, + "z": -3.349286975641872e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cfOm3mUKxHZpbykpHeldRB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ee/oE2fthDvpZjxb8j87lp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5VzuQWgNOsrF2rrJeuq8C" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger1", + "_objFlags": 0, + "_parent": { + "__id__": 20 + }, + "_children": [ + { + "__id__": 28 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 32 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.25803840160369873, + "y": -0.07605993747711182, + "z": 0.000060439109802246094 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.06533004228890654, + "y": 0.1550997319427988, + "z": -0.010403928164399058, + "w": 0.9856813973107901 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 0.9999997615814209 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 7.586134386714674, + "y": 17.88558687467142, + "z": -0.014012989797106726 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger11", + "_objFlags": 0, + "_parent": { + "__id__": 27 + }, + "_children": [ + { + "__id__": 29 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 31 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06295228004455566, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -1.8788470906461414e-9, + "y": 0.11640221704419262, + "z": 3.4289460392435338e-9, + "w": 0.9932021565961265 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -2.595741635394667e-7, + "y": 13.369018774858489, + "z": 3.651958082463327e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger12", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 30 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06295216083526611, + "y": -5.960464477539063e-8, + "z": 5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 9.683549130913256e-9, + "y": 0.11640222439382181, + "z": 3.0495184335786466e-9, + "w": 0.993202155734758 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 0.9999999403953552, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0.0000010614330943463798, + "y": 13.36901962282832, + "z": 4.76239647768404e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50tWSvEf9Fm55wIO/kXA6+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "81228lZ3FD7q1EgLlhKhs+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ecRF2OO+1Kg6ZHFc6ngoEu" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger2", + "_objFlags": 0, + "_parent": { + "__id__": 20 + }, + "_children": [ + { + "__id__": 34 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 38 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.2580385208129883, + "y": -0.025353312492370605, + "z": 0.00002014636993408203 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.0042401966213926326, + "y": 0.2556978438501499, + "z": 0.01738229190274643, + "w": 0.9665911696840623 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -0.039683012266759236, + "y": 29.635441592310343, + "z": 2.0499966555654097 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger21", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [ + { + "__id__": 35 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 37 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.0569310188293457, + "y": 0, + "z": -5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -1.879008444213511e-9, + "y": 0.1260981221375761, + "z": -5.042347711207478e-9, + "w": 0.9920177738293688 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -1.4073896886606418e-7, + "y": 14.48835072340038, + "z": -6.003495308011543e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger22", + "_objFlags": 0, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 36 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06567466259002686, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -4.196536333144121e-9, + "y": 0.12609809280913337, + "z": 6.279188991271274e-9, + "w": 0.992017777557388 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999997615814209, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -5.677819697538621e-7, + "y": 14.488347335565956, + "z": 6.531594968063432e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7dSNVzKQxPcbtnBEaIEB+c" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8xnnQj4RKWYjzo1x9v30f" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2aPHIeH9FP+7frqZX7ZIoj" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger3", + "_objFlags": 0, + "_parent": { + "__id__": 20 + }, + "_children": [ + { + "__id__": 40 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 44 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.25801753997802734, + "y": 0.03340023756027222, + "z": -0.00006508827209472656 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.05963092233274884, + "y": 0.3167688812568696, + "z": 0.08301036715765372, + "w": 0.9429798024949254 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -9.568603704205783, + "y": 37.708400576456086, + "z": 6.821453378192049 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger31", + "_objFlags": 0, + "_parent": { + "__id__": 39 + }, + "_children": [ + { + "__id__": 41 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 43 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.04921448230743408, + "y": 2.9802322387695312e-8, + "z": 5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 7.25791116532672e-10, + "y": 0.15822037337903314, + "z": -1.356164119535318e-9, + "w": 0.9874038249104565 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.000000238418579, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 1.0671014845393109e-7, + "y": 18.207230800284727, + "z": -1.40288337685695e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger32", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 42 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.05428910255432129, + "y": -2.9802322387695312e-8, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -2.413381305187966e-9, + "y": 0.07800656662404377, + "z": 2.510812036653885e-9, + "w": 0.9969528452055937 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.000000238418579, + "y": 0.9999998807907104, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -2.981543089612157e-7, + "y": 8.947984562719617, + "z": 2.652681849571953e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1bSRt8xYdMN7+sCEFD6LR6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "baERHNBGVLl72Ownxu6ZQ0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3fSt5hg1CgpDj5bwWcSD/" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger4", + "_objFlags": 0, + "_parent": { + "__id__": 20 + }, + "_children": [ + { + "__id__": 46 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 50 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.24704039096832275, + "y": 0.08190596103668213, + "z": -0.019670486450195312 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.0868145707558189, + "y": 0.24745159160800334, + "z": 0.048052826466605275, + "w": 0.9638059275516617 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -11.032304263426557, + "y": 29.07365775053084, + "z": 2.846616324665754 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger41", + "_objFlags": 0, + "_parent": { + "__id__": 45 + }, + "_children": [ + { + "__id__": 47 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 49 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.038811326026916504, + "y": 0, + "z": -1.1920928955078125e-7 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -5.000861976308559e-9, + "y": 0.11640222439382181, + "z": -5.896313694376953e-9, + "w": 0.993202155734758 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -4.905117886222559e-7, + "y": 13.369019622828322, + "z": -7.377797539020772e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Finger42", + "_objFlags": 0, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 48 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.03881120681762695, + "y": 0, + "z": 5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 8.813586594615997e-10, + "y": 0.11640220969456343, + "z": 3.353601200164617e-9, + "w": 0.993202157457495 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 5.557699000156113e-8, + "y": 13.369017926888654, + "z": 3.9343820529302227e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "faDpyFtGxHJbNMHmkni93+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c1dGEnlTdKSJI2DFSBS02j" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d6muAxrXBLFK8dAV+1rmFI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2fyjSbQ7xI85868cDi1BON" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5bGul9+4VOypjomb2RRYPn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "55gwDaMHdCELN99NqjrXTf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7cXdrNZBZD8LJU7Yk+guQM" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Clavicle", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 56 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 92 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.23000192642211914, + "y": -0.22659046947956085, + "z": 0.02832210063934326 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.6361305082140936, + "y": -0.7690887408292874, + "z": 0.03949691333207712, + "w": -0.04775436195928766 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999999403953552, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -0.0008402105032285468, + "y": 172.89319349414328, + "z": -79.18981406818966 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R UpperArm", + "_objFlags": 0, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 57 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 91 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.2636745870113373, + "y": 0, + "z": -7.450580596923828e-9 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.033578574201876855, + "y": -0.039842068608476645, + "z": 0.37206974120797326, + "w": 0.9267411702309325 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -2.5884654373438716, + "y": -3.8824082042793497, + "z": 43.81248042084942 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Forearm", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [ + { + "__id__": 58 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 90 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.5116827487945557, + "y": 0, + "z": 1.4901161193847656e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -2.8218932527204763e-10, + "y": -0.12936039168638322, + "z": 2.3248222722025306e-8, + "w": 0.9915976447444524 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999998807907104, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 3.12557750797446e-7, + "y": -14.86526674555451, + "z": 0.000002645848855271084 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Hand", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [ + { + "__id__": 59 + }, + { + "__id__": 65 + }, + { + "__id__": 71 + }, + { + "__id__": 77 + }, + { + "__id__": 83 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 89 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.4711427092552185, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.7817653292447713, + "y": 0.16839523343897508, + "z": 0.08155836779456409, + "w": 0.5948396825940029 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 0.9999998807907104, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 104.63046763851519, + "y": 4.477105986515138, + "z": 21.119813834233387 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger0", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [ + { + "__id__": 60 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 64 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06814885139465332, + "y": 0.1017833948135376, + "z": -0.06761682033538818 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.6496226726978404, + "y": 0.13313676292700494, + "z": 0.27934604622654674, + "w": 0.6944283778272812 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1.0000001192092896 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -90.00514286106886, + "y": 34.12255612569189, + "z": 12.415194302873646 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger01", + "_objFlags": 0, + "_parent": { + "__id__": 59 + }, + "_children": [ + { + "__id__": 61 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 63 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.07074224948883057, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 3.5845116007308622e-9, + "y": 0.11640221704419262, + "z": 4.119504321149127e-9, + "w": 0.9932021565961265 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 3.530136462864767e-7, + "y": 13.369018774858487, + "z": 5.166641959465336e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger02", + "_objFlags": 0, + "_parent": { + "__id__": 60 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 62 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.07074189186096191, + "y": 0, + "z": 5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 5.042963926086063e-10, + "y": 0.06414266060105547, + "z": -4.985999713810523e-9, + "w": 0.997940739268128 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 9.431724143848417e-8, + "y": 7.3552569691035785, + "z": -5.664702316068646e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dev5gI/3ZJpoBoopjdgkBv" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3cOUIrmrxOooZ9H7UAuOTS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3eyRM7FHlCdITaAb1mFEqy" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger1", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [ + { + "__id__": 66 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 70 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.25803840160369873, + "y": 0.07605987787246704, + "z": 0.000060558319091796875 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.06533004229080558, + "y": 0.1550997319473073, + "z": 0.010403925370733808, + "w": 0.9856813973394422 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -7.586134337052036, + "y": 17.88558685374288, + "z": 0.014012674217117068 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger11", + "_objFlags": 0, + "_parent": { + "__id__": 65 + }, + "_children": [ + { + "__id__": 67 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 69 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06295216083526611, + "y": -5.960464477539063e-8, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 1.8788468702309913e-9, + "y": 0.11640220969456343, + "z": -5.597105488556948e-9, + "w": 0.993202157457495 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 2.884945873600084e-7, + "y": 13.369017926888658, + "z": -6.119596418013506e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger12", + "_objFlags": 0, + "_parent": { + "__id__": 66 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 68 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.06295204162597656, + "y": 5.960464477539063e-8, + "z": 5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -3.6999656858274864e-9, + "y": 0.11640223174345095, + "z": 6.099035973689393e-9, + "w": 0.9932021548733893 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 0.9999999403953552, + "z": 0.9999998211860657 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -5.024559447373246e-7, + "y": 13.369020470798155, + "z": 6.447942589725642e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "837O9hLxRAdrOUOSVI3XKQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1fh+L6AMlLWqHhwyvIpQch" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4beb88UM9ObqmEDKU5eOYn" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger2", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [ + { + "__id__": 72 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 76 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.2580385208129883, + "y": 0.025353312492370605, + "z": 0.000020265579223632812 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.004240193329510334, + "y": 0.2556978717074886, + "z": -0.017382291770526838, + "w": 0.9665911623316206 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0.03968343233867504, + "y": 29.635444901844444, + "z": -2.0499965432842004 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger21", + "_objFlags": 0, + "_parent": { + "__id__": 71 + }, + "_children": [ + { + "__id__": 73 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 75 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.0569310188293457, + "y": -1.1920928955078125e-7, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 4.697524458856119e-10, + "y": 0.12609809280913337, + "z": -6.246201296294787e-11, + "w": 0.992017777557388 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 5.4302546930414785e-8, + "y": 14.488347335565951, + "z": -3.126676252684355e-10 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger22", + "_objFlags": 0, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 74 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.0656747817993164, + "y": 1.1920928955078125e-7, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 9.395040000621576e-10, + "y": 0.1260981221375761, + "z": -3.758016444337826e-9, + "w": 0.9920177738293688 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 1.6110238015344363e-7, + "y": 14.48835072340038, + "z": -4.136238950734458e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fDfCGBVNGO5XXancku+98" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9Cks43jdPLJ6NXpcYg9nM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "64Nl8m1UtDT5x9wRhiWlUw" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger3", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [ + { + "__id__": 78 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 82 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.25801753997802734, + "y": -0.03340023756027222, + "z": -0.00006496906280517578 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.05963092657085492, + "y": 0.31676885417870576, + "z": -0.08301037532210935, + "w": 0.9429798106043913 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.000000238418579, + "y": 0.9999998807907104, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 9.568604288265075, + "y": 37.70839744093824, + "z": -6.821454375815925 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger31", + "_objFlags": 0, + "_parent": { + "__id__": 77 + }, + "_children": [ + { + "__id__": 79 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 81 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.04921460151672363, + "y": 0, + "z": -1.1920928955078125e-7 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -2.676862101654255e-9, + "y": 0.15822038269091204, + "z": 3.6019432370185636e-9, + "w": 0.9874038234183323 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.000000238418579, + "y": 0.9999998807907104, + "z": 1.0000001192092896 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -3.681878026919706e-7, + "y": 18.20723188095982, + "z": 3.5901975220473506e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger32", + "_objFlags": 0, + "_parent": { + "__id__": 78 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 80 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.05428886413574219, + "y": 2.9802322387695312e-8, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 1.0490014566492711e-9, + "y": 0.0780065518135563, + "z": 0, + "w": 0.9969528463644401 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 0.9999998807907104, + "z": 1.000000238418579 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 1.1984042401763774e-7, + "y": 8.947982860375465, + "z": 9.376911134343753e-9 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b1+w+GP45CQbyW5GN6VEaV" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05TJ2KsRFPULnU7vt51S4G" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9b02Y8cGlB3rdl42a0B+bS" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger4", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [ + { + "__id__": 84 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 88 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.24704039096832275, + "y": -0.08190596103668213, + "z": -0.019670486450195312 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.08681456833311438, + "y": 0.2474516059391916, + "z": -0.048052832974880756, + "w": 0.9638059237659509 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 11.032304226872471, + "y": 29.0736595169429, + "z": -2.846616949519205 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger41", + "_objFlags": 0, + "_parent": { + "__id__": 83 + }, + "_children": [ + { + "__id__": 85 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 87 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.038811326026916504, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -3.859055320334328e-9, + "y": 0.11640222439382181, + "z": 8.884043553333528e-10, + "w": 0.993202155734758 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.0000001192092896, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -4.510592258600949e-7, + "y": 13.369019622828322, + "z": 4.9636765904260794e-8 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Finger42", + "_objFlags": 0, + "_parent": { + "__id__": 84 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 86 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.038811326026916504, + "y": 0, + "z": -5.960464477539063e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 2.2836150863248153e-9, + "y": 0.11640223174345095, + "z": 2.8467954803739885e-9, + "w": 0.9932021548733893 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999998807907104, + "y": 0.9999999403953552, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 2.219315438841654e-7, + "y": 13.36902047079815, + "z": 3.5446163462257066e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1cTb9ljoJGPbfhFxOK86Pn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "faj/dDuG1Kr7pqIVcHJrAt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98hVVqDDtAi564bjFmKBxp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fYu5zukpPj64dc26lAoJa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3dBakgtOdFW7vl77V+n7ng" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ddy6WzYfNIwoReERS6lbAX" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "682YiTEqFHWLDY6SI1LKbb" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 Head", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 94 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.18754291534423828, + "y": 0, + "z": -1.4901161193847656e-8 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -8.786147143705162e-14, + "y": -0.03122232576672472, + "z": -8.659632757083116e-8, + "w": 0.9995124643413452 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999999403953552, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -3.098357017926332e-7, + "y": -3.5783965369060278, + "z": -0.000009918369950092832 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70Uyg4SgBNgZyTos+JFACM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48O3/ZnNFOtq3YdFKY9bYC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2cIfzNQt9D2pv5w60GTFAu" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Thigh", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [ + { + "__id__": 98 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 104 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.2528039216995239, + "y": 0.2641824185848236, + "z": -0.000475078821182251 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.007310619912619043, + "y": 0.014188269830691559, + "z": -0.993821603158877, + "w": -0.10983564508129504 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 178.24977359484376, + "y": -178.96386343214957, + "z": 12.597850192803794 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Calf", + "_objFlags": 0, + "_parent": { + "__id__": 97 + }, + "_children": [ + { + "__id__": 99 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 103 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.6210788488388062, + "y": 0, + "z": 1.862645149230957e-9 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -3.4676556204086317e-11, + "y": -0.021934063750405283, + "z": 3.70651969783765e-9, + "w": 0.9997594194842042 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 5.343499009245589e-9, + "y": -2.513660143389423, + "z": 4.247208456486013e-7 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Foot", + "_objFlags": 0, + "_parent": { + "__id__": 98 + }, + "_children": [ + { + "__id__": 100 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 102 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.6210787892341614, + "y": 0, + "z": -5.587935447692871e-9 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.1345264601088139, + "y": 0.012528476188518371, + "z": 0.11271523579192666, + "w": 0.9843987730769254 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999999403953552, + "y": 0.9999999403953552, + "z": 0.9999998807907104 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -15.920926482238785, + "y": 3.2305942475318408, + "z": 12.623450616107252 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 L Toe0", + "_objFlags": 0, + "_parent": { + "__id__": 99 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 101 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.22456009685993195, + "y": 0, + "z": -0.2889990508556366 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 1.5454311872698817e-8, + "y": 0.7071067811865474, + "z": -1.5454311872698817e-8, + "w": 0.7071067811865474 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999998807907104, + "y": 0.9999999403953552, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0.000002504478444114821, + "y": 90.00000000000001, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "54uncdc4JDm7nQEgOB6cz1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dcZakfp21ND6qv77uyl/si" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "95XuyPUElHxraEM6bB+diO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9Xu0Fct5C0YVpUWzQpc5c" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Thigh", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [ + { + "__id__": 106 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 112 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -0.2528039216995239, + "y": -0.2641824185848236, + "z": -0.0004765428602695465 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -0.007310314191753449, + "y": -0.01418551260877592, + "z": -0.9938216328763596, + "w": 0.10983575267375542 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999998807907104, + "z": 1.0000001192092896 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -178.25009918810895, + "y": -178.96393440973864, + "z": -12.597866007369333 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Calf", + "_objFlags": 0, + "_parent": { + "__id__": 105 + }, + "_children": [ + { + "__id__": 107 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 111 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.6210788488388062, + "y": -5.960464477539063e-8, + "z": 9.313225746154785e-10 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 3.2684304733649494e-10, + "y": -0.021934063750405283, + "z": -1.0213622317302408e-11, + "w": 0.9997594194842042 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 0.9999998807907104, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 3.741877226333374e-8, + "y": -2.513660143389423, + "z": -1.991619785845318e-9 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Foot", + "_objFlags": 0, + "_parent": { + "__id__": 106 + }, + "_children": [ + { + "__id__": 108 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 110 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.6210787296295166, + "y": 0, + "z": -5.587935447692871e-9 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0.13452647352112787, + "y": 0.012528462080023426, + "z": -0.11271531650085638, + "w": 0.9843987621822726 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999999403953552, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 15.9209284446258, + "y": 3.2305941714865503, + "z": -12.623460004848537 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bip002 R Toe0", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 109 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0.22456009685993195, + "y": 0, + "z": -0.2889990210533142 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": -1.0185953588390975e-8, + "y": 0.7071067811865474, + "z": 2.0722666604292914e-8, + "w": 0.7071067811865474 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.9999999403953552, + "y": 1, + "z": 0.9999999403953552 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": -0.0000025044781562438674, + "y": 90.00000000000004, + "z": 8.537737182193318e-7 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "73rMh0+rpNwLknuy8eMA0A" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "59DrDnrGtOoYU4c4rHB4fH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0aoMPw/7pH5In99fZ2xGl0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5MdLcaTFKn5hqdDEdJvHK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8deDWIEsNAVZotnnzWCMVu" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3I01gYUpG7L3rkY/Mibc5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a18b0WSP1IJYLSp2LzpK6G" + }, + { + "__type__": "cc.SkeletalAnimation", + "_name": "Cocos", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "445d5d9d-c56b-4528-bc90-c847357e5d94@ab65f" + }, + { + "__uuid__": "a873a742-b503-4a96-8570-6fe542697035@57e42" + }, + { + "__uuid__": "caf172df-03b7-4c5a-8a53-93f3e4be5146@5ecd9" + }, + { + "__uuid__": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@96245" + }, + { + "__uuid__": "501da3c5-f2d8-45f7-bc04-5130d58811ff@cd579" + }, + { + "__uuid__": "50735e20-7211-4e9c-b676-4d648cdc0cbb@b6423" + }, + { + "__uuid__": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@b452c" + }, + { + "__uuid__": "58c9fdbf-de49-4141-83fa-9ad83f78591c@b940a" + }, + { + "__uuid__": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@0a7b5" + } + ], + "_defaultClip": { + "__uuid__": "445d5d9d-c56b-4528-bc90-c847357e5d94@ab65f" + }, + "_useBakedAnimation": true, + "_sockets": [], + "_id": "", + "__prefab": { + "__id__": 117 + } + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a4qp8lxm5KMbkVyFeGn7pR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1neOoI9JPe45MvlxJ49KN" + } +] \ No newline at end of file diff --git a/assets/res/model/cocos/Cocos.prefab.meta b/assets/res/model/cocos/Cocos.prefab.meta new file mode 100644 index 00000000..1d0efca0 --- /dev/null +++ b/assets/res/model/cocos/Cocos.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "6cd4e8c1-b63f-4bbb-b3db-b323fa08b435", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "Cocos" + } +} diff --git a/assets/res/model/cocos/animations.meta b/assets/res/model/cocos/animations.meta new file mode 100644 index 00000000..8995ae93 --- /dev/null +++ b/assets/res/model/cocos/animations.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "75b08e51-53d1-4bca-b3de-ad7713d25d2c", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_attack.bin b/assets/res/model/cocos/animations/cocos_anim_attack.bin new file mode 100644 index 00000000..1c628671 Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_attack.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_attack.bin.meta b/assets/res/model/cocos/animations/cocos_anim_attack.bin.meta new file mode 100644 index 00000000..86328083 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_attack.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "73443895-6d8f-41b5-8e3f-4110d0f4dc31", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_attack.gltf b/assets/res/model/cocos/animations/cocos_anim_attack.gltf new file mode 100644 index 00000000..dcca3767 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_attack.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":164,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":492,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":656,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":492,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":328,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":984,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1312,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":984,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":492,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1476,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1968,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1476,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":656,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1968,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2624,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1968,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":820,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2460,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3280,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2460,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":984,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2952,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3936,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2952,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1148,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3444,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4592,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3444,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1312,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3936,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5248,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3936,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1476,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4428,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5904,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4428,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1640,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4920,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6560,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4920,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1804,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5412,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7216,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5412,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1968,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5904,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7872,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5904,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2132,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6396,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8528,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6396,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2296,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6888,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9184,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6888,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2460,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7380,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9840,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7380,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2624,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7872,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10496,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7872,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2788,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8364,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11152,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8364,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2952,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8856,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11808,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8856,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3116,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9348,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12464,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9348,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3280,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9840,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13120,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9840,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3444,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10332,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13776,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10332,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3608,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10824,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14432,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10824,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3772,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11316,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15088,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11316,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3936,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11808,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15744,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11808,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4100,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12300,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16400,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12300,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4264,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12792,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17056,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12792,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4428,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13284,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17712,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13284,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4592,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13776,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18368,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13776,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4756,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14268,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19024,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14268,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4920,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14760,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19680,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14760,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5084,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15252,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20336,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15252,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5248,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15744,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20992,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15744,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5412,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16236,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21648,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16236,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5576,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16728,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22304,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16728,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5740,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17220,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22960,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17220,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5904,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17712,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23616,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17712,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6068,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18204,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24272,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18204,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6232,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18696,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24928,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18696,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6396,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19188,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25584,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19188,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6560,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19680,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26240,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19680,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6724,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20172,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26896,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20172,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6888,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20664,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":27552,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20664,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7052,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21156,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28208,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21156,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7216,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21648,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28864,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21648,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7380,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22140,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29520,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22140,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7544,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22632,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30176,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22632,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7708,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23124,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30832,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23124,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7872,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23616,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31488,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23616,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8036,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24108,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32144,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24108,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8200,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24600,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32800,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24600,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8364,"componentType":5126,"count":41,"type":"SCALAR","max":[1.3333333730697632],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25092,"componentType":5126,"count":41,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":33456,"componentType":5126,"count":41,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25092,"componentType":5126,"count":41,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":8528},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":8528,"byteLength":25584,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":34112,"byteLength":34112,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":68224,"byteLength":25584,"byteStride":12}],"buffers":[{"name":"cocos_anim_attack","uri":"cocos_anim_attack.bin","byteLength":93808}],"animations":[{"name":"cocos_anim_attack","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_attack.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_attack.gltf.meta new file mode 100644 index 00000000..cbc3ee30 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_attack.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_die.bin b/assets/res/model/cocos/animations/cocos_anim_die.bin new file mode 100644 index 00000000..08d24fe5 Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_die.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_die.bin.meta b/assets/res/model/cocos/animations/cocos_anim_die.bin.meta new file mode 100644 index 00000000..20e19773 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_die.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "d1a7cd09-b5d9-422f-a4f3-112d85f1059c", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_die.gltf b/assets/res/model/cocos/animations/cocos_anim_die.gltf new file mode 100644 index 00000000..b1b6eccd --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_die.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":204,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":612,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":816,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":612,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":408,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1224,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1632,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1224,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":612,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1836,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2448,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1836,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":816,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2448,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3264,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2448,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1020,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3060,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4080,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3060,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1224,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3672,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4896,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3672,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1428,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4284,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5712,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4284,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1632,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4896,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6528,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4896,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1836,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5508,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7344,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5508,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2040,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6120,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8160,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6120,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2244,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6732,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8976,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6732,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2448,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7344,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9792,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7344,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2652,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7956,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10608,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7956,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2856,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8568,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11424,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8568,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3060,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9180,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12240,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9180,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3264,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9792,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13056,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9792,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3468,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10404,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13872,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10404,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3672,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11016,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14688,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11016,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3876,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11628,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15504,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11628,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4080,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12240,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16320,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12240,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4284,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12852,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17136,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12852,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4488,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13464,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17952,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13464,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4692,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14076,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18768,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14076,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4896,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14688,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19584,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14688,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5100,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15300,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20400,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15300,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5304,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15912,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21216,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15912,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5508,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16524,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22032,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16524,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5712,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17136,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22848,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17136,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5916,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17748,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23664,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17748,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6120,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18360,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24480,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18360,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6324,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18972,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25296,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18972,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6528,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19584,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26112,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19584,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6732,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20196,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26928,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20196,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6936,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20808,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":27744,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20808,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7140,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21420,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28560,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21420,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7344,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22032,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29376,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22032,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7548,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22644,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30192,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22644,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7752,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23256,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31008,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23256,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7956,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23868,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31824,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23868,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8160,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24480,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32640,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24480,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8364,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25092,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":33456,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25092,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8568,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25704,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":34272,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25704,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8772,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26316,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":35088,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26316,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8976,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26928,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":35904,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26928,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9180,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":27540,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":36720,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":27540,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9384,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28152,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":37536,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28152,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9588,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28764,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":38352,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28764,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9792,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29376,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39168,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29376,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9996,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29988,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39984,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29988,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10200,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":30600,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":40800,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":30600,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10404,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":31212,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":41616,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":31212,"componentType":5126,"count":51,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":10608},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":10608,"byteLength":31824,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":42432,"byteLength":42432,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":84864,"byteLength":31824,"byteStride":12}],"buffers":[{"name":"cocos_anim_die","uri":"cocos_anim_die.bin","byteLength":116688}],"animations":[{"name":"cocos_anim_die","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_die.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_die.gltf.meta new file mode 100644 index 00000000..a6c7499c --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_die.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_down.bin b/assets/res/model/cocos/animations/cocos_anim_down.bin new file mode 100644 index 00000000..6e8bfa18 Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_down.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_down.bin.meta b/assets/res/model/cocos/animations/cocos_anim_down.bin.meta new file mode 100644 index 00000000..809b487c --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_down.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "fe407fd3-1b9c-4fb7-9a97-edb4cdae6314", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_down.gltf b/assets/res/model/cocos/animations/cocos_anim_down.gltf new file mode 100644 index 00000000..1035f5ea --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_down.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":320,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":960,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1280,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":960,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":640,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1920,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2560,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1920,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":960,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2880,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3840,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2880,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1280,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3840,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5120,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3840,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1600,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4800,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6400,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4800,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1920,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5760,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7680,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5760,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2240,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6720,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8960,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6720,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2560,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7680,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10240,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7680,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2880,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8640,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11520,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8640,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3200,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9600,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12800,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9600,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3520,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10560,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14080,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10560,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3840,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11520,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15360,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11520,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4160,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12480,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16640,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12480,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4480,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13440,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17920,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13440,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4800,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14400,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19200,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14400,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5120,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15360,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20480,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15360,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5440,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16320,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21760,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16320,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5760,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17280,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23040,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17280,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6080,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18240,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24320,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18240,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6400,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19200,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25600,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19200,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6720,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20160,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26880,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20160,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7040,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21120,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28160,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21120,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7360,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22080,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29440,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22080,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7680,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23040,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30720,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23040,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8000,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24000,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32000,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24000,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8320,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24960,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":33280,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24960,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8640,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25920,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":34560,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25920,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8960,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26880,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":35840,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26880,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9280,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":27840,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":37120,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":27840,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9600,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28800,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":38400,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28800,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9920,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29760,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39680,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29760,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10240,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":30720,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":40960,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":30720,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10560,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":31680,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":42240,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":31680,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10880,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":32640,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":43520,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":32640,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11200,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":33600,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":44800,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":33600,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11520,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":34560,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":46080,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":34560,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11840,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":35520,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":47360,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":35520,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":12160,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":36480,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":48640,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":36480,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":12480,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":37440,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":49920,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":37440,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":12800,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":38400,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":51200,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":38400,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":13120,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":39360,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":52480,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":39360,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":13440,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":40320,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":53760,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":40320,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":13760,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":41280,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":55040,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":41280,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":14080,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":42240,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":56320,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":42240,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":14400,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":43200,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":57600,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":43200,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":14720,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":44160,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":58880,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":44160,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":15040,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":45120,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":60160,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":45120,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":15360,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":46080,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":61440,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":46080,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":15680,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":47040,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":62720,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":47040,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":16000,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":48000,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":64000,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":48000,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":16320,"componentType":5126,"count":80,"type":"SCALAR","max":[2.633333444595337],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":48960,"componentType":5126,"count":80,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":65280,"componentType":5126,"count":80,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":48960,"componentType":5126,"count":80,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":16640},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":16640,"byteLength":49920,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":66560,"byteLength":66560,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":133120,"byteLength":49920,"byteStride":12}],"buffers":[{"name":"cocos_anim_down","uri":"cocos_anim_down.bin","byteLength":183040}],"animations":[{"name":"cocos_anim_down","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_down.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_down.gltf.meta new file mode 100644 index 00000000..0f58d48c --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_down.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_hurt.bin b/assets/res/model/cocos/animations/cocos_anim_hurt.bin new file mode 100644 index 00000000..668a024f Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_hurt.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_hurt.bin.meta b/assets/res/model/cocos/animations/cocos_anim_hurt.bin.meta new file mode 100644 index 00000000..8e272349 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_hurt.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "a1efb6ff-ef74-4037-8801-d310eca22fd5", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_hurt.gltf b/assets/res/model/cocos/animations/cocos_anim_hurt.gltf new file mode 100644 index 00000000..40bb3141 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_hurt.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":64,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":192,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":256,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":192,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":128,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":384,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":512,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":384,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":192,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":576,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":768,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":576,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":256,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":768,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1024,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":768,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":320,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":960,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1280,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":960,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":384,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1152,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1536,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1152,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":448,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1344,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1792,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1344,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":512,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1536,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2048,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1536,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":576,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1728,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2304,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1728,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":640,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1920,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2560,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1920,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":704,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2112,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2816,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2112,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":768,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2304,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3072,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2304,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":832,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2496,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3328,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2496,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":896,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2688,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3584,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2688,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":960,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2880,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3840,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2880,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1024,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3072,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4096,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3072,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1088,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3264,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4352,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3264,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1152,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3456,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4608,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3456,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1216,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3648,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4864,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3648,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1280,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3840,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5120,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3840,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1344,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4032,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5376,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4032,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1408,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4224,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5632,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4224,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1472,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4416,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5888,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4416,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1536,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4608,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6144,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4608,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1600,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4800,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6400,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4800,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1664,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4992,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6656,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4992,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1728,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5184,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6912,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5184,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1792,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5376,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7168,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5376,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1856,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5568,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7424,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5568,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1920,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5760,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7680,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5760,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1984,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5952,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7936,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5952,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2048,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6144,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8192,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6144,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2112,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6336,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8448,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6336,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2176,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6528,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8704,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6528,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2240,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6720,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8960,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6720,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2304,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6912,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9216,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6912,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2368,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7104,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9472,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7104,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2432,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7296,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9728,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7296,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2496,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7488,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9984,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7488,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2560,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7680,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10240,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7680,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2624,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7872,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10496,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7872,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2688,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8064,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10752,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8064,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2752,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8256,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11008,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8256,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2816,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8448,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11264,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8448,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2880,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8640,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11520,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8640,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2944,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8832,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11776,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8832,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3008,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9024,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12032,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9024,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3072,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9216,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12288,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9216,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3136,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9408,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12544,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9408,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3200,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9600,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12800,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9600,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3264,"componentType":5126,"count":16,"type":"SCALAR","max":[0.5],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9792,"componentType":5126,"count":16,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13056,"componentType":5126,"count":16,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9792,"componentType":5126,"count":16,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":3328},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":3328,"byteLength":9984,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":13312,"byteLength":13312,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":26624,"byteLength":9984,"byteStride":12}],"buffers":[{"name":"cocos_anim_hurt","uri":"cocos_anim_hurt.bin","byteLength":36608}],"animations":[{"name":"cocos_anim_hurt","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_hurt.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_hurt.gltf.meta new file mode 100644 index 00000000..6382ba36 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_hurt.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_idle.bin b/assets/res/model/cocos/animations/cocos_anim_idle.bin new file mode 100644 index 00000000..a194c5cc Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_idle.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_idle.bin.meta b/assets/res/model/cocos/animations/cocos_anim_idle.bin.meta new file mode 100644 index 00000000..7b700d4b --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_idle.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "e9d41da7-da95-4119-8a6c-0937de2adb57", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_idle.gltf b/assets/res/model/cocos/animations/cocos_anim_idle.gltf new file mode 100644 index 00000000..b824df5d --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_idle.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":364,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1092,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1456,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1092,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":728,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2184,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2912,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2184,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1092,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3276,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4368,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3276,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1456,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4368,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5824,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4368,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1820,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5460,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7280,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5460,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2184,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6552,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8736,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6552,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2548,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7644,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10192,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7644,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2912,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8736,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11648,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8736,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3276,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9828,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13104,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9828,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3640,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10920,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14560,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10920,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4004,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12012,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16016,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12012,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4368,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13104,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17472,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13104,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4732,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14196,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18928,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14196,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5096,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15288,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20384,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15288,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5460,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16380,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21840,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16380,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5824,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17472,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23296,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17472,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6188,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18564,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24752,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18564,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6552,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19656,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26208,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19656,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6916,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20748,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":27664,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20748,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7280,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21840,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29120,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21840,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7644,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22932,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30576,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22932,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8008,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24024,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32032,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24024,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8372,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25116,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":33488,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25116,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8736,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26208,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":34944,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26208,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9100,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":27300,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":36400,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":27300,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9464,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28392,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":37856,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28392,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9828,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29484,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39312,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29484,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10192,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":30576,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":40768,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":30576,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10556,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":31668,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":42224,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":31668,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10920,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":32760,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":43680,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":32760,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11284,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":33852,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":45136,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":33852,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11648,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":34944,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":46592,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":34944,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":12012,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":36036,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":48048,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":36036,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":12376,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":37128,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":49504,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":37128,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":12740,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":38220,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":50960,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":38220,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":13104,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":39312,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":52416,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":39312,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":13468,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":40404,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":53872,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":40404,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":13832,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":41496,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":55328,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":41496,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":14196,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":42588,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":56784,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":42588,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":14560,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":43680,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":58240,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":43680,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":14924,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":44772,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":59696,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":44772,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":15288,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":45864,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":61152,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":45864,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":15652,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":46956,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":62608,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":46956,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":16016,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":48048,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":64064,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":48048,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":16380,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":49140,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":65520,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":49140,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":16744,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":50232,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":66976,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":50232,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":17108,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":51324,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":68432,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":51324,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":17472,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":52416,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":69888,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":52416,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":17836,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":53508,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":71344,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":53508,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":18200,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":54600,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":72800,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":54600,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":18564,"componentType":5126,"count":91,"type":"SCALAR","max":[3.000000238418579],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":55692,"componentType":5126,"count":91,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":74256,"componentType":5126,"count":91,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":55692,"componentType":5126,"count":91,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":18928},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":18928,"byteLength":56784,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":75712,"byteLength":75712,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":151424,"byteLength":56784,"byteStride":12}],"buffers":[{"name":"cocos_anim_idle","uri":"cocos_anim_idle.bin","byteLength":208208}],"animations":[{"name":"cocos_anim_idle","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_idle.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_idle.gltf.meta new file mode 100644 index 00000000..f6a2b5e9 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_idle.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_jump.bin b/assets/res/model/cocos/animations/cocos_anim_jump.bin new file mode 100644 index 00000000..4da41c5a Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_jump.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_jump.bin.meta b/assets/res/model/cocos/animations/cocos_anim_jump.bin.meta new file mode 100644 index 00000000..22be996a --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_jump.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "33a7dcc9-4eed-4d49-baac-d190c3d2a157", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_jump.gltf b/assets/res/model/cocos/animations/cocos_anim_jump.gltf new file mode 100644 index 00000000..91fd15d6 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_jump.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":204,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":612,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":816,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":612,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":408,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1224,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1632,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1224,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":612,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1836,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2448,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1836,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":816,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2448,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3264,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2448,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1020,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3060,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4080,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3060,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1224,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3672,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4896,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3672,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1428,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4284,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5712,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4284,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1632,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4896,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6528,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4896,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1836,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5508,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7344,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5508,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2040,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6120,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8160,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6120,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2244,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6732,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8976,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6732,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2448,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7344,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9792,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7344,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2652,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7956,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10608,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7956,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2856,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8568,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11424,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8568,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3060,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9180,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12240,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9180,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3264,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9792,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13056,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9792,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3468,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10404,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13872,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10404,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3672,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11016,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14688,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11016,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3876,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11628,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15504,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11628,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4080,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12240,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16320,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12240,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4284,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12852,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17136,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12852,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4488,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13464,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17952,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13464,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4692,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14076,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18768,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14076,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4896,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14688,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19584,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14688,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5100,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15300,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20400,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15300,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5304,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15912,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21216,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15912,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5508,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16524,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22032,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16524,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5712,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17136,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22848,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17136,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5916,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17748,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23664,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17748,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6120,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18360,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24480,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18360,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6324,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18972,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25296,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18972,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6528,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19584,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26112,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19584,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6732,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20196,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26928,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20196,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6936,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20808,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":27744,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20808,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7140,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21420,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28560,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21420,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7344,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22032,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29376,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22032,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7548,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22644,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30192,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22644,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7752,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23256,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31008,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23256,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7956,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23868,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31824,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23868,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8160,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24480,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32640,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24480,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8364,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25092,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":33456,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25092,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8568,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25704,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":34272,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25704,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8772,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26316,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":35088,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26316,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8976,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26928,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":35904,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26928,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9180,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":27540,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":36720,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":27540,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9384,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28152,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":37536,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28152,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9588,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28764,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":38352,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28764,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9792,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29376,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39168,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29376,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9996,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29988,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39984,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29988,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10200,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":30600,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":40800,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":30600,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10404,"componentType":5126,"count":51,"type":"SCALAR","max":[1.6666667461395264],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":31212,"componentType":5126,"count":51,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":41616,"componentType":5126,"count":51,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":31212,"componentType":5126,"count":51,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":10608},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":10608,"byteLength":31824,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":42432,"byteLength":42432,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":84864,"byteLength":31824,"byteStride":12}],"buffers":[{"name":"cocos_anim_jump","uri":"cocos_anim_jump.bin","byteLength":116688}],"animations":[{"name":"cocos_anim_jump","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_jump.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_jump.gltf.meta new file mode 100644 index 00000000..0ecc6008 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_jump.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_run.bin b/assets/res/model/cocos/animations/cocos_anim_run.bin new file mode 100644 index 00000000..fe464e7e Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_run.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_run.bin.meta b/assets/res/model/cocos/animations/cocos_anim_run.bin.meta new file mode 100644 index 00000000..b5d8c480 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_run.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "f1d8a0c8-d2d8-473f-a769-803842978f68", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_run.gltf b/assets/res/model/cocos/animations/cocos_anim_run.gltf new file mode 100644 index 00000000..f74ca45c --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_run.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":100,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":200,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":300,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":400,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":500,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":600,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":700,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":800,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":900,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1000,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1100,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1200,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1300,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1400,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1500,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1600,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1700,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1800,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1900,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2000,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2100,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2200,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2300,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2400,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2500,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2600,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2700,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2800,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2900,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3000,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3100,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3200,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3300,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3400,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3500,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3600,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3700,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3800,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3900,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4000,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4100,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4200,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12600,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4300,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12900,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4400,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13200,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4500,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13500,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4600,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13800,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4700,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18800,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14100,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4800,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19200,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14400,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4900,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19600,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14700,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5000,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20000,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15000,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5100,"componentType":5126,"count":25,"type":"SCALAR","max":[0.8000000715255737],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15300,"componentType":5126,"count":25,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20400,"componentType":5126,"count":25,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15300,"componentType":5126,"count":25,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":5200},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":5200,"byteLength":15600,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":20800,"byteLength":20800,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":41600,"byteLength":15600,"byteStride":12}],"buffers":[{"name":"cocos_anim_run","uri":"cocos_anim_run.bin","byteLength":57200}],"animations":[{"name":"cocos_anim_run","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_run.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_run.gltf.meta new file mode 100644 index 00000000..9e32269a --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_run.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_shoot.bin b/assets/res/model/cocos/animations/cocos_anim_shoot.bin new file mode 100644 index 00000000..502ace35 Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_shoot.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_shoot.bin.meta b/assets/res/model/cocos/animations/cocos_anim_shoot.bin.meta new file mode 100644 index 00000000..2de6c724 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_shoot.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "a9e047be-e87a-43d9-bbd5-1b3f5dbe2026", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_shoot.gltf b/assets/res/model/cocos/animations/cocos_anim_shoot.gltf new file mode 100644 index 00000000..68df7bbf --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_shoot.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":160,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":480,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":640,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":480,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":320,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":960,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1280,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":960,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":480,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1440,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1920,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1440,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":640,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1920,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2560,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1920,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":800,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2400,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3200,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2400,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":960,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2880,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3840,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2880,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1120,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3360,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4480,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3360,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1280,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3840,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5120,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3840,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1440,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4320,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5760,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4320,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1600,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4800,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6400,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4800,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1760,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5280,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7040,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5280,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1920,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5760,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7680,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5760,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2080,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6240,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8320,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6240,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2240,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6720,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8960,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6720,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2400,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7200,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9600,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7200,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2560,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7680,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10240,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7680,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2720,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8160,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10880,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8160,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2880,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8640,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11520,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8640,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3040,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9120,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12160,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9120,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3200,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9600,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12800,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9600,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3360,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10080,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13440,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10080,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3520,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10560,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14080,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10560,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3680,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11040,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14720,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11040,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3840,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11520,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15360,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11520,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4000,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12000,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16000,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12000,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4160,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12480,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16640,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12480,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4320,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12960,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17280,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12960,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4480,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13440,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17920,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13440,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4640,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13920,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18560,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13920,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4800,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14400,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19200,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14400,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4960,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14880,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19840,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14880,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5120,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15360,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20480,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15360,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5280,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15840,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21120,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15840,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5440,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16320,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21760,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16320,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5600,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16800,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22400,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16800,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5760,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17280,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23040,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17280,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5920,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17760,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23680,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17760,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6080,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18240,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24320,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18240,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6240,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18720,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24960,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18720,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6400,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19200,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25600,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19200,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6560,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19680,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26240,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19680,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6720,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20160,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26880,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20160,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6880,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20640,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":27520,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20640,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7040,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21120,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28160,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21120,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7200,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21600,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28800,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21600,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7360,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22080,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29440,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22080,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7520,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22560,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30080,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22560,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7680,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23040,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30720,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23040,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7840,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23520,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31360,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23520,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8000,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24000,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32000,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24000,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8160,"componentType":5126,"count":40,"type":"SCALAR","max":[1.3000000715255738],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24480,"componentType":5126,"count":40,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32640,"componentType":5126,"count":40,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24480,"componentType":5126,"count":40,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":8320},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":8320,"byteLength":24960,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":33280,"byteLength":33280,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":66560,"byteLength":24960,"byteStride":12}],"buffers":[{"name":"cocos_anim_shoot","uri":"cocos_anim_shoot.bin","byteLength":91520}],"animations":[{"name":"cocos_anim_shoot","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_shoot.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_shoot.gltf.meta new file mode 100644 index 00000000..68de0976 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_shoot.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_squat.bin b/assets/res/model/cocos/animations/cocos_anim_squat.bin new file mode 100644 index 00000000..22ad7359 Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_squat.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_squat.bin.meta b/assets/res/model/cocos/animations/cocos_anim_squat.bin.meta new file mode 100644 index 00000000..f366fd87 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_squat.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "7290f264-a898-4355-8041-8514dbd0051f", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_squat.gltf b/assets/res/model/cocos/animations/cocos_anim_squat.gltf new file mode 100644 index 00000000..dff6faf1 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_squat.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":228,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":684,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":912,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":684,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":456,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1368,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1824,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1368,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":684,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2052,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2736,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2052,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":912,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2736,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3648,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2736,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1140,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3420,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4560,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3420,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1368,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4104,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5472,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4104,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1596,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4788,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6384,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4788,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1824,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5472,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7296,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5472,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2052,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6156,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8208,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6156,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2280,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6840,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9120,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6840,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2508,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7524,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10032,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7524,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2736,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8208,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10944,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8208,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2964,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8892,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11856,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8892,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3192,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9576,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12768,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9576,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3420,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10260,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13680,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10260,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3648,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10944,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14592,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10944,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3876,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11628,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15504,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11628,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4104,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12312,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16416,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12312,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4332,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12996,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17328,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12996,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4560,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13680,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18240,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13680,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4788,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14364,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19152,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14364,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5016,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15048,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20064,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15048,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5244,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15732,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20976,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15732,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5472,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16416,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21888,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16416,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5700,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17100,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22800,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17100,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5928,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17784,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23712,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17784,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6156,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18468,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24624,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18468,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6384,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19152,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25536,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19152,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6612,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19836,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26448,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19836,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6840,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20520,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":27360,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20520,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7068,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21204,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":28272,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21204,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7296,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":21888,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":29184,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":21888,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7524,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":22572,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":30096,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":22572,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7752,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23256,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31008,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23256,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":7980,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":23940,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":31920,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":23940,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8208,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":24624,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":32832,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":24624,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8436,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25308,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":33744,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25308,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8664,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":25992,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":34656,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":25992,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":8892,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":26676,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":35568,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":26676,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9120,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":27360,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":36480,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":27360,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9348,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28044,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":37392,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28044,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9576,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":28728,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":38304,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":28728,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":9804,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":29412,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":39216,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":29412,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10032,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":30096,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":40128,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":30096,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10260,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":30780,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":41040,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":30780,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10488,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":31464,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":41952,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":31464,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10716,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":32148,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":42864,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":32148,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":10944,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":32832,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":43776,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":32832,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11172,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":33516,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":44688,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":33516,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11400,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":34200,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":45600,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":34200,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":11628,"componentType":5126,"count":57,"type":"SCALAR","max":[1.8666667938232422],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":34884,"componentType":5126,"count":57,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":46512,"componentType":5126,"count":57,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":34884,"componentType":5126,"count":57,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":11856},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":11856,"byteLength":35568,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":47424,"byteLength":47424,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":94848,"byteLength":35568,"byteStride":12}],"buffers":[{"name":"cocos_anim_squat","uri":"cocos_anim_squat.bin","byteLength":130416}],"animations":[{"name":"cocos_anim_squat","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_squat.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_squat.gltf.meta new file mode 100644 index 00000000..d1370506 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_squat.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/animations/cocos_anim_walk.bin b/assets/res/model/cocos/animations/cocos_anim_walk.bin new file mode 100644 index 00000000..47fc9f5f Binary files /dev/null and b/assets/res/model/cocos/animations/cocos_anim_walk.bin differ diff --git a/assets/res/model/cocos/animations/cocos_anim_walk.bin.meta b/assets/res/model/cocos/animations/cocos_anim_walk.bin.meta new file mode 100644 index 00000000..ab9e37c1 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_walk.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "e08b2140-55f5-4d1f-af55-565183504a80", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/animations/cocos_anim_walk.gltf b/assets/res/model/cocos/animations/cocos_anim_walk.gltf new file mode 100644 index 00000000..5ac5c3f8 --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_walk.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"SkelAnim@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1]},{"name":"Bip002 Pelvis","children":[2]},{"name":"Bip002 Spine","children":[3,44,48]},{"name":"Bip002 Spine1","children":[4]},{"name":"Bip002 Neck","children":[5,24,43]},{"name":"Bip002 L Clavicle","children":[6]},{"name":"Bip002 L UpperArm","children":[7]},{"name":"Bip002 L Forearm","children":[8]},{"name":"Bip002 L Hand","children":[9,12,15,18,21]},{"name":"Bip002 L Finger0","children":[10]},{"name":"Bip002 L Finger01","children":[11]},{"name":"Bip002 L Finger02"},{"name":"Bip002 L Finger1","children":[13]},{"name":"Bip002 L Finger11","children":[14]},{"name":"Bip002 L Finger12"},{"name":"Bip002 L Finger2","children":[16]},{"name":"Bip002 L Finger21","children":[17]},{"name":"Bip002 L Finger22"},{"name":"Bip002 L Finger3","children":[19]},{"name":"Bip002 L Finger31","children":[20]},{"name":"Bip002 L Finger32"},{"name":"Bip002 L Finger4","children":[22]},{"name":"Bip002 L Finger41","children":[23]},{"name":"Bip002 L Finger42"},{"name":"Bip002 R Clavicle","children":[25]},{"name":"Bip002 R UpperArm","children":[26]},{"name":"Bip002 R Forearm","children":[27]},{"name":"Bip002 R Hand","children":[28,31,34,37,40]},{"name":"Bip002 R Finger0","children":[29]},{"name":"Bip002 R Finger01","children":[30]},{"name":"Bip002 R Finger02"},{"name":"Bip002 R Finger1","children":[32]},{"name":"Bip002 R Finger11","children":[33]},{"name":"Bip002 R Finger12"},{"name":"Bip002 R Finger2","children":[35]},{"name":"Bip002 R Finger21","children":[36]},{"name":"Bip002 R Finger22"},{"name":"Bip002 R Finger3","children":[38]},{"name":"Bip002 R Finger31","children":[39]},{"name":"Bip002 R Finger32"},{"name":"Bip002 R Finger4","children":[41]},{"name":"Bip002 R Finger41","children":[42]},{"name":"Bip002 R Finger42"},{"name":"Bip002 Head"},{"name":"Bip002 L Thigh","children":[45]},{"name":"Bip002 L Calf","children":[46]},{"name":"Bip002 L Foot","children":[47]},{"name":"Bip002 L Toe0"},{"name":"Bip002 R Thigh","children":[49]},{"name":"Bip002 R Calf","children":[50]},{"name":"Bip002 R Foot","children":[51]},{"name":"Bip002 R Toe0"}],"accessors":[{"name":"accessorAnimationInput","bufferView":0,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":132,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":396,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":528,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":396,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":264,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":792,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1056,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":792,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":396,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1188,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":1584,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1188,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":528,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1584,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2112,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1584,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":660,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":1980,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":2640,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":1980,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":792,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2376,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3168,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2376,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":924,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":2772,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":3696,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":2772,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1056,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3168,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4224,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3168,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1188,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3564,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":4752,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3564,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1320,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":3960,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5280,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":3960,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1452,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4356,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":5808,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4356,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1584,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":4752,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6336,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":4752,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1716,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5148,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":6864,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5148,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1848,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5544,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7392,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5544,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":1980,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":5940,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":7920,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":5940,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2112,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6336,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8448,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6336,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2244,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":6732,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":8976,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":6732,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2376,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7128,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":9504,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7128,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2508,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7524,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10032,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7524,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2640,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":7920,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":10560,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":7920,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2772,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8316,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11088,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8316,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":2904,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":8712,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":11616,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":8712,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3036,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9108,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12144,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9108,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3168,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9504,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":12672,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9504,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3300,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":9900,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13200,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":9900,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3432,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10296,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":13728,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10296,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3564,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":10692,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14256,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":10692,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3696,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11088,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":14784,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11088,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3828,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11484,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15312,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11484,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":3960,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":11880,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":15840,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":11880,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4092,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12276,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16368,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12276,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4224,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":12672,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":16896,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":12672,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4356,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13068,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17424,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13068,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4488,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13464,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":17952,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13464,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4620,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":13860,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":18480,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":13860,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4752,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14256,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19008,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14256,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":4884,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":14652,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":19536,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":14652,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5016,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15048,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20064,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15048,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5148,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15444,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":20592,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15444,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5280,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":15840,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21120,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":15840,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5412,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16236,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":21648,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16236,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5544,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":16632,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22176,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":16632,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5676,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17028,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":22704,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17028,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5808,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17424,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23232,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17424,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":5940,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":17820,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":23760,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":17820,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6072,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18216,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24288,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18216,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6204,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":18612,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":24816,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":18612,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6336,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19008,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25344,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19008,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6468,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19404,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":25872,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19404,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6600,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":19800,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26400,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":19800,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationInput","bufferView":0,"byteOffset":6732,"componentType":5126,"count":33,"type":"SCALAR","max":[1.0666667222976685],"min":[0.0]},{"name":"accessorAnimationTranslation","bufferView":1,"byteOffset":20196,"componentType":5126,"count":33,"type":"VEC3"},{"name":"accessorAnimationRotation","bufferView":2,"byteOffset":26928,"componentType":5126,"count":33,"type":"VEC4"},{"name":"accessorAnimationScale","bufferView":3,"byteOffset":20196,"componentType":5126,"count":33,"type":"VEC3"}],"bufferViews":[{"buffer":0,"name":"bufferViewKeyFrameTimeScalarF","byteLength":6864},{"buffer":0,"name":"bufferViewTranslationVec3F","byteOffset":6864,"byteLength":20592,"byteStride":12},{"buffer":0,"name":"bufferViewRotationVec4F","byteOffset":27456,"byteLength":27456,"byteStride":16},{"buffer":0,"name":"bufferViewScaleVec3F","byteOffset":54912,"byteLength":20592,"byteStride":12}],"buffers":[{"name":"cocos_anim_walk","uri":"cocos_anim_walk.bin","byteLength":75504}],"animations":[{"name":"cocos_anim_walk","channels":[{"sampler":0,"target":{"node":0,"path":"translation"}},{"sampler":1,"target":{"node":0,"path":"rotation"}},{"sampler":2,"target":{"node":0,"path":"scale"}},{"sampler":3,"target":{"node":1,"path":"translation"}},{"sampler":4,"target":{"node":1,"path":"rotation"}},{"sampler":5,"target":{"node":1,"path":"scale"}},{"sampler":6,"target":{"node":2,"path":"translation"}},{"sampler":7,"target":{"node":2,"path":"rotation"}},{"sampler":8,"target":{"node":2,"path":"scale"}},{"sampler":9,"target":{"node":3,"path":"translation"}},{"sampler":10,"target":{"node":3,"path":"rotation"}},{"sampler":11,"target":{"node":3,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"translation"}},{"sampler":13,"target":{"node":4,"path":"rotation"}},{"sampler":14,"target":{"node":4,"path":"scale"}},{"sampler":15,"target":{"node":5,"path":"translation"}},{"sampler":16,"target":{"node":5,"path":"rotation"}},{"sampler":17,"target":{"node":5,"path":"scale"}},{"sampler":18,"target":{"node":6,"path":"translation"}},{"sampler":19,"target":{"node":6,"path":"rotation"}},{"sampler":20,"target":{"node":6,"path":"scale"}},{"sampler":21,"target":{"node":7,"path":"translation"}},{"sampler":22,"target":{"node":7,"path":"rotation"}},{"sampler":23,"target":{"node":7,"path":"scale"}},{"sampler":24,"target":{"node":8,"path":"translation"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":8,"path":"scale"}},{"sampler":27,"target":{"node":9,"path":"translation"}},{"sampler":28,"target":{"node":9,"path":"rotation"}},{"sampler":29,"target":{"node":9,"path":"scale"}},{"sampler":30,"target":{"node":10,"path":"translation"}},{"sampler":31,"target":{"node":10,"path":"rotation"}},{"sampler":32,"target":{"node":10,"path":"scale"}},{"sampler":33,"target":{"node":11,"path":"translation"}},{"sampler":34,"target":{"node":11,"path":"rotation"}},{"sampler":35,"target":{"node":11,"path":"scale"}},{"sampler":36,"target":{"node":12,"path":"translation"}},{"sampler":37,"target":{"node":12,"path":"rotation"}},{"sampler":38,"target":{"node":12,"path":"scale"}},{"sampler":39,"target":{"node":13,"path":"translation"}},{"sampler":40,"target":{"node":13,"path":"rotation"}},{"sampler":41,"target":{"node":13,"path":"scale"}},{"sampler":42,"target":{"node":14,"path":"translation"}},{"sampler":43,"target":{"node":14,"path":"rotation"}},{"sampler":44,"target":{"node":14,"path":"scale"}},{"sampler":45,"target":{"node":15,"path":"translation"}},{"sampler":46,"target":{"node":15,"path":"rotation"}},{"sampler":47,"target":{"node":15,"path":"scale"}},{"sampler":48,"target":{"node":16,"path":"translation"}},{"sampler":49,"target":{"node":16,"path":"rotation"}},{"sampler":50,"target":{"node":16,"path":"scale"}},{"sampler":51,"target":{"node":17,"path":"translation"}},{"sampler":52,"target":{"node":17,"path":"rotation"}},{"sampler":53,"target":{"node":17,"path":"scale"}},{"sampler":54,"target":{"node":18,"path":"translation"}},{"sampler":55,"target":{"node":18,"path":"rotation"}},{"sampler":56,"target":{"node":18,"path":"scale"}},{"sampler":57,"target":{"node":19,"path":"translation"}},{"sampler":58,"target":{"node":19,"path":"rotation"}},{"sampler":59,"target":{"node":19,"path":"scale"}},{"sampler":60,"target":{"node":20,"path":"translation"}},{"sampler":61,"target":{"node":20,"path":"rotation"}},{"sampler":62,"target":{"node":20,"path":"scale"}},{"sampler":63,"target":{"node":21,"path":"translation"}},{"sampler":64,"target":{"node":21,"path":"rotation"}},{"sampler":65,"target":{"node":21,"path":"scale"}},{"sampler":66,"target":{"node":22,"path":"translation"}},{"sampler":67,"target":{"node":22,"path":"rotation"}},{"sampler":68,"target":{"node":22,"path":"scale"}},{"sampler":69,"target":{"node":23,"path":"translation"}},{"sampler":70,"target":{"node":23,"path":"rotation"}},{"sampler":71,"target":{"node":23,"path":"scale"}},{"sampler":72,"target":{"node":24,"path":"translation"}},{"sampler":73,"target":{"node":24,"path":"rotation"}},{"sampler":74,"target":{"node":24,"path":"scale"}},{"sampler":75,"target":{"node":25,"path":"translation"}},{"sampler":76,"target":{"node":25,"path":"rotation"}},{"sampler":77,"target":{"node":25,"path":"scale"}},{"sampler":78,"target":{"node":26,"path":"translation"}},{"sampler":79,"target":{"node":26,"path":"rotation"}},{"sampler":80,"target":{"node":26,"path":"scale"}},{"sampler":81,"target":{"node":27,"path":"translation"}},{"sampler":82,"target":{"node":27,"path":"rotation"}},{"sampler":83,"target":{"node":27,"path":"scale"}},{"sampler":84,"target":{"node":28,"path":"translation"}},{"sampler":85,"target":{"node":28,"path":"rotation"}},{"sampler":86,"target":{"node":28,"path":"scale"}},{"sampler":87,"target":{"node":29,"path":"translation"}},{"sampler":88,"target":{"node":29,"path":"rotation"}},{"sampler":89,"target":{"node":29,"path":"scale"}},{"sampler":90,"target":{"node":30,"path":"translation"}},{"sampler":91,"target":{"node":30,"path":"rotation"}},{"sampler":92,"target":{"node":30,"path":"scale"}},{"sampler":93,"target":{"node":31,"path":"translation"}},{"sampler":94,"target":{"node":31,"path":"rotation"}},{"sampler":95,"target":{"node":31,"path":"scale"}},{"sampler":96,"target":{"node":32,"path":"translation"}},{"sampler":97,"target":{"node":32,"path":"rotation"}},{"sampler":98,"target":{"node":32,"path":"scale"}},{"sampler":99,"target":{"node":33,"path":"translation"}},{"sampler":100,"target":{"node":33,"path":"rotation"}},{"sampler":101,"target":{"node":33,"path":"scale"}},{"sampler":102,"target":{"node":34,"path":"translation"}},{"sampler":103,"target":{"node":34,"path":"rotation"}},{"sampler":104,"target":{"node":34,"path":"scale"}},{"sampler":105,"target":{"node":35,"path":"translation"}},{"sampler":106,"target":{"node":35,"path":"rotation"}},{"sampler":107,"target":{"node":35,"path":"scale"}},{"sampler":108,"target":{"node":36,"path":"translation"}},{"sampler":109,"target":{"node":36,"path":"rotation"}},{"sampler":110,"target":{"node":36,"path":"scale"}},{"sampler":111,"target":{"node":37,"path":"translation"}},{"sampler":112,"target":{"node":37,"path":"rotation"}},{"sampler":113,"target":{"node":37,"path":"scale"}},{"sampler":114,"target":{"node":38,"path":"translation"}},{"sampler":115,"target":{"node":38,"path":"rotation"}},{"sampler":116,"target":{"node":38,"path":"scale"}},{"sampler":117,"target":{"node":39,"path":"translation"}},{"sampler":118,"target":{"node":39,"path":"rotation"}},{"sampler":119,"target":{"node":39,"path":"scale"}},{"sampler":120,"target":{"node":40,"path":"translation"}},{"sampler":121,"target":{"node":40,"path":"rotation"}},{"sampler":122,"target":{"node":40,"path":"scale"}},{"sampler":123,"target":{"node":41,"path":"translation"}},{"sampler":124,"target":{"node":41,"path":"rotation"}},{"sampler":125,"target":{"node":41,"path":"scale"}},{"sampler":126,"target":{"node":42,"path":"translation"}},{"sampler":127,"target":{"node":42,"path":"rotation"}},{"sampler":128,"target":{"node":42,"path":"scale"}},{"sampler":129,"target":{"node":43,"path":"translation"}},{"sampler":130,"target":{"node":43,"path":"rotation"}},{"sampler":131,"target":{"node":43,"path":"scale"}},{"sampler":132,"target":{"node":44,"path":"translation"}},{"sampler":133,"target":{"node":44,"path":"rotation"}},{"sampler":134,"target":{"node":44,"path":"scale"}},{"sampler":135,"target":{"node":45,"path":"translation"}},{"sampler":136,"target":{"node":45,"path":"rotation"}},{"sampler":137,"target":{"node":45,"path":"scale"}},{"sampler":138,"target":{"node":46,"path":"translation"}},{"sampler":139,"target":{"node":46,"path":"rotation"}},{"sampler":140,"target":{"node":46,"path":"scale"}},{"sampler":141,"target":{"node":47,"path":"translation"}},{"sampler":142,"target":{"node":47,"path":"rotation"}},{"sampler":143,"target":{"node":47,"path":"scale"}},{"sampler":144,"target":{"node":48,"path":"translation"}},{"sampler":145,"target":{"node":48,"path":"rotation"}},{"sampler":146,"target":{"node":48,"path":"scale"}},{"sampler":147,"target":{"node":49,"path":"translation"}},{"sampler":148,"target":{"node":49,"path":"rotation"}},{"sampler":149,"target":{"node":49,"path":"scale"}},{"sampler":150,"target":{"node":50,"path":"translation"}},{"sampler":151,"target":{"node":50,"path":"rotation"}},{"sampler":152,"target":{"node":50,"path":"scale"}},{"sampler":153,"target":{"node":51,"path":"translation"}},{"sampler":154,"target":{"node":51,"path":"rotation"}},{"sampler":155,"target":{"node":51,"path":"scale"}}],"samplers":[{"input":0,"interpolation":"LINEAR","output":1},{"input":0,"interpolation":"LINEAR","output":2},{"input":0,"interpolation":"LINEAR","output":3},{"input":4,"interpolation":"LINEAR","output":5},{"input":4,"interpolation":"LINEAR","output":6},{"input":4,"interpolation":"LINEAR","output":7},{"input":8,"interpolation":"LINEAR","output":9},{"input":8,"interpolation":"LINEAR","output":10},{"input":8,"interpolation":"LINEAR","output":11},{"input":12,"interpolation":"LINEAR","output":13},{"input":12,"interpolation":"LINEAR","output":14},{"input":12,"interpolation":"LINEAR","output":15},{"input":16,"interpolation":"LINEAR","output":17},{"input":16,"interpolation":"LINEAR","output":18},{"input":16,"interpolation":"LINEAR","output":19},{"input":20,"interpolation":"LINEAR","output":21},{"input":20,"interpolation":"LINEAR","output":22},{"input":20,"interpolation":"LINEAR","output":23},{"input":24,"interpolation":"LINEAR","output":25},{"input":24,"interpolation":"LINEAR","output":26},{"input":24,"interpolation":"LINEAR","output":27},{"input":28,"interpolation":"LINEAR","output":29},{"input":28,"interpolation":"LINEAR","output":30},{"input":28,"interpolation":"LINEAR","output":31},{"input":32,"interpolation":"LINEAR","output":33},{"input":32,"interpolation":"LINEAR","output":34},{"input":32,"interpolation":"LINEAR","output":35},{"input":36,"interpolation":"LINEAR","output":37},{"input":36,"interpolation":"LINEAR","output":38},{"input":36,"interpolation":"LINEAR","output":39},{"input":40,"interpolation":"LINEAR","output":41},{"input":40,"interpolation":"LINEAR","output":42},{"input":40,"interpolation":"LINEAR","output":43},{"input":44,"interpolation":"LINEAR","output":45},{"input":44,"interpolation":"LINEAR","output":46},{"input":44,"interpolation":"LINEAR","output":47},{"input":48,"interpolation":"LINEAR","output":49},{"input":48,"interpolation":"LINEAR","output":50},{"input":48,"interpolation":"LINEAR","output":51},{"input":52,"interpolation":"LINEAR","output":53},{"input":52,"interpolation":"LINEAR","output":54},{"input":52,"interpolation":"LINEAR","output":55},{"input":56,"interpolation":"LINEAR","output":57},{"input":56,"interpolation":"LINEAR","output":58},{"input":56,"interpolation":"LINEAR","output":59},{"input":60,"interpolation":"LINEAR","output":61},{"input":60,"interpolation":"LINEAR","output":62},{"input":60,"interpolation":"LINEAR","output":63},{"input":64,"interpolation":"LINEAR","output":65},{"input":64,"interpolation":"LINEAR","output":66},{"input":64,"interpolation":"LINEAR","output":67},{"input":68,"interpolation":"LINEAR","output":69},{"input":68,"interpolation":"LINEAR","output":70},{"input":68,"interpolation":"LINEAR","output":71},{"input":72,"interpolation":"LINEAR","output":73},{"input":72,"interpolation":"LINEAR","output":74},{"input":72,"interpolation":"LINEAR","output":75},{"input":76,"interpolation":"LINEAR","output":77},{"input":76,"interpolation":"LINEAR","output":78},{"input":76,"interpolation":"LINEAR","output":79},{"input":80,"interpolation":"LINEAR","output":81},{"input":80,"interpolation":"LINEAR","output":82},{"input":80,"interpolation":"LINEAR","output":83},{"input":84,"interpolation":"LINEAR","output":85},{"input":84,"interpolation":"LINEAR","output":86},{"input":84,"interpolation":"LINEAR","output":87},{"input":88,"interpolation":"LINEAR","output":89},{"input":88,"interpolation":"LINEAR","output":90},{"input":88,"interpolation":"LINEAR","output":91},{"input":92,"interpolation":"LINEAR","output":93},{"input":92,"interpolation":"LINEAR","output":94},{"input":92,"interpolation":"LINEAR","output":95},{"input":96,"interpolation":"LINEAR","output":97},{"input":96,"interpolation":"LINEAR","output":98},{"input":96,"interpolation":"LINEAR","output":99},{"input":100,"interpolation":"LINEAR","output":101},{"input":100,"interpolation":"LINEAR","output":102},{"input":100,"interpolation":"LINEAR","output":103},{"input":104,"interpolation":"LINEAR","output":105},{"input":104,"interpolation":"LINEAR","output":106},{"input":104,"interpolation":"LINEAR","output":107},{"input":108,"interpolation":"LINEAR","output":109},{"input":108,"interpolation":"LINEAR","output":110},{"input":108,"interpolation":"LINEAR","output":111},{"input":112,"interpolation":"LINEAR","output":113},{"input":112,"interpolation":"LINEAR","output":114},{"input":112,"interpolation":"LINEAR","output":115},{"input":116,"interpolation":"LINEAR","output":117},{"input":116,"interpolation":"LINEAR","output":118},{"input":116,"interpolation":"LINEAR","output":119},{"input":120,"interpolation":"LINEAR","output":121},{"input":120,"interpolation":"LINEAR","output":122},{"input":120,"interpolation":"LINEAR","output":123},{"input":124,"interpolation":"LINEAR","output":125},{"input":124,"interpolation":"LINEAR","output":126},{"input":124,"interpolation":"LINEAR","output":127},{"input":128,"interpolation":"LINEAR","output":129},{"input":128,"interpolation":"LINEAR","output":130},{"input":128,"interpolation":"LINEAR","output":131},{"input":132,"interpolation":"LINEAR","output":133},{"input":132,"interpolation":"LINEAR","output":134},{"input":132,"interpolation":"LINEAR","output":135},{"input":136,"interpolation":"LINEAR","output":137},{"input":136,"interpolation":"LINEAR","output":138},{"input":136,"interpolation":"LINEAR","output":139},{"input":140,"interpolation":"LINEAR","output":141},{"input":140,"interpolation":"LINEAR","output":142},{"input":140,"interpolation":"LINEAR","output":143},{"input":144,"interpolation":"LINEAR","output":145},{"input":144,"interpolation":"LINEAR","output":146},{"input":144,"interpolation":"LINEAR","output":147},{"input":148,"interpolation":"LINEAR","output":149},{"input":148,"interpolation":"LINEAR","output":150},{"input":148,"interpolation":"LINEAR","output":151},{"input":152,"interpolation":"LINEAR","output":153},{"input":152,"interpolation":"LINEAR","output":154},{"input":152,"interpolation":"LINEAR","output":155},{"input":156,"interpolation":"LINEAR","output":157},{"input":156,"interpolation":"LINEAR","output":158},{"input":156,"interpolation":"LINEAR","output":159},{"input":160,"interpolation":"LINEAR","output":161},{"input":160,"interpolation":"LINEAR","output":162},{"input":160,"interpolation":"LINEAR","output":163},{"input":164,"interpolation":"LINEAR","output":165},{"input":164,"interpolation":"LINEAR","output":166},{"input":164,"interpolation":"LINEAR","output":167},{"input":168,"interpolation":"LINEAR","output":169},{"input":168,"interpolation":"LINEAR","output":170},{"input":168,"interpolation":"LINEAR","output":171},{"input":172,"interpolation":"LINEAR","output":173},{"input":172,"interpolation":"LINEAR","output":174},{"input":172,"interpolation":"LINEAR","output":175},{"input":176,"interpolation":"LINEAR","output":177},{"input":176,"interpolation":"LINEAR","output":178},{"input":176,"interpolation":"LINEAR","output":179},{"input":180,"interpolation":"LINEAR","output":181},{"input":180,"interpolation":"LINEAR","output":182},{"input":180,"interpolation":"LINEAR","output":183},{"input":184,"interpolation":"LINEAR","output":185},{"input":184,"interpolation":"LINEAR","output":186},{"input":184,"interpolation":"LINEAR","output":187},{"input":188,"interpolation":"LINEAR","output":189},{"input":188,"interpolation":"LINEAR","output":190},{"input":188,"interpolation":"LINEAR","output":191},{"input":192,"interpolation":"LINEAR","output":193},{"input":192,"interpolation":"LINEAR","output":194},{"input":192,"interpolation":"LINEAR","output":195},{"input":196,"interpolation":"LINEAR","output":197},{"input":196,"interpolation":"LINEAR","output":198},{"input":196,"interpolation":"LINEAR","output":199},{"input":200,"interpolation":"LINEAR","output":201},{"input":200,"interpolation":"LINEAR","output":202},{"input":200,"interpolation":"LINEAR","output":203},{"input":204,"interpolation":"LINEAR","output":205},{"input":204,"interpolation":"LINEAR","output":206},{"input":204,"interpolation":"LINEAR","output":207}]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/animations/cocos_anim_walk.gltf.meta b/assets/res/model/cocos/animations/cocos_anim_walk.gltf.meta new file mode 100644 index 00000000..3e39bcda --- /dev/null +++ b/assets/res/model/cocos/animations/cocos_anim_walk.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/body.mtl b/assets/res/model/cocos/body.mtl new file mode 100644 index 00000000..efb3fb52 --- /dev/null +++ b/assets/res/model/cocos/body.mtl @@ -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" + } + }, + {}, + {} + ] +} \ No newline at end of file diff --git a/assets/res/model/cocos/body.mtl.meta b/assets/res/model/cocos/body.mtl.meta new file mode 100644 index 00000000..71b826f0 --- /dev/null +++ b/assets/res/model/cocos/body.mtl.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.0.21", + "importer": "material", + "imported": true, + "uuid": "58cf3db3-e6f4-4943-a076-26157912429c", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/body_toon.mtl b/assets/res/model/cocos/body_toon.mtl new file mode 100644 index 00000000..3328b7ae --- /dev/null +++ b/assets/res/model/cocos/body_toon.mtl @@ -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" + } + }, + {}, + {} + ] +} \ No newline at end of file diff --git a/assets/res/model/cocos/body_toon.mtl.meta b/assets/res/model/cocos/body_toon.mtl.meta new file mode 100644 index 00000000..d248e9c7 --- /dev/null +++ b/assets/res/model/cocos/body_toon.mtl.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.0.21", + "importer": "material", + "imported": true, + "uuid": "f25c1b3b-c558-45ab-8f50-347859ff2330", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/cocos_mesh.gltf b/assets/res/model/cocos/cocos_mesh.gltf new file mode 100644 index 00000000..fb160477 --- /dev/null +++ b/assets/res/model/cocos/cocos_mesh.gltf @@ -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}]} \ No newline at end of file diff --git a/assets/res/model/cocos/cocos_mesh.gltf.meta b/assets/res/model/cocos/cocos_mesh.gltf.meta new file mode 100644 index 00000000..bc8c4ac4 --- /dev/null +++ b/assets/res/model/cocos/cocos_mesh.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/cocos_mesh_helmet.gltf b/assets/res/model/cocos/cocos_mesh_helmet.gltf new file mode 100644 index 00000000..9c3b9d4b --- /dev/null +++ b/assets/res/model/cocos/cocos_mesh_helmet.gltf @@ -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}]} \ No newline at end of file diff --git a/assets/res/model/cocos/cocos_mesh_helmet.gltf.meta b/assets/res/model/cocos/cocos_mesh_helmet.gltf.meta new file mode 100644 index 00000000..399dc5fb --- /dev/null +++ b/assets/res/model/cocos/cocos_mesh_helmet.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/cocos_skel.gltf b/assets/res/model/cocos/cocos_skel.gltf new file mode 100644 index 00000000..43658289 --- /dev/null +++ b/assets/res/model/cocos/cocos_skel.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"Skeleton@Cocos glTF exporter for 3ds max v1.0"},"scene":0,"scenes":[{"nodes":[0]}],"nodes":[{"name":"Bip002","children":[1],"translation":[0.0,1.4394174814224244,0.018384279683232309],"rotation":[-0.0,-0.7071062922477722,-0.0,0.7071073055267334],"scale":[0.9999999403953552,1.0,0.9999999403953552]},{"name":"Bip002 Pelvis","children":[2],"translation":[0.0,0.0,0.0],"rotation":[-0.4999993145465851,-0.5,0.5,0.5000007152557373],"scale":[1.0,0.9999999403953552,0.9999999403953552]},{"name":"Bip002 Spine","children":[3,44,48],"translation":[0.252804160118103,3.5096945794066416e-7,0.0002744346857070923],"rotation":[-0.0000020804759515158368,0.0003981590270996094,6.936760996723024e-7,0.9999999403953552],"scale":[1.0,0.9999999403953552,1.0]},{"name":"Bip002 Spine1","children":[4],"translation":[0.3447195291519165,-9.74392122543577e-10,0.0003513079136610031],"rotation":[-2.7546582094355178e-14,-0.03077978827059269,-8.537083573401105e-8,0.9995262026786804],"scale":[1.0,0.9999999403953552,1.0]},{"name":"Bip002 Neck","children":[5,24,43],"translation":[0.665433406829834,-4.1106318349193318e-10,0.0001481771469116211],"rotation":[-2.6696007278831934e-15,0.06157424673438072,1.7078235714507174e-7,0.9981024861335754],"scale":[1.0000001192092896,0.9999999403953552,1.0]},{"name":"Bip002 L Clavicle","children":[6],"translation":[-0.23000192642211915,0.22659029066562653,0.028323352336883546],"rotation":[-0.6361306309700012,-0.7690886855125427,-0.03949904441833496,-0.04775259643793106],"scale":[0.9999999403953552,1.0,0.9999999403953552]},{"name":"Bip002 L UpperArm","children":[7],"translation":[0.26367461681365969,0.0,-1.4901161193847657e-8],"rotation":[0.033578574657440189,-0.03984207287430763,-0.37206974625587466,0.9267411828041077],"scale":[1.0,0.9999999403953552,1.0]},{"name":"Bip002 L Forearm","children":[8],"translation":[0.5116827487945557,0.0,7.450580596923828e-9],"rotation":[3.595055364513655e-9,-0.1293603926897049,-8.652979666123884e-9,0.9915976524353027],"scale":[0.9999998807907105,1.0000001192092896,0.9999999403953552]},{"name":"Bip002 L Hand","children":[9,12,15,18,21],"translation":[0.47114282846450808,0.0,0.0],"rotation":[-0.781765341758728,0.1683952361345291,-0.08155837655067444,0.5948396921157837],"scale":[1.0,1.0,0.9999998211860657]},{"name":"Bip002 L Finger0","children":[10],"translation":[0.06814885139465332,-0.1017833948135376,-0.06761693954467774],"rotation":[0.6496226787567139,0.1331367939710617,-0.2793460488319397,0.6944283843040466],"scale":[1.0,0.9999998211860657,1.0]},{"name":"Bip002 L Finger01","children":[11],"translation":[0.07074236869812012,5.960464477539063e-8,0.0],"rotation":[-6.301759558624553e-9,0.11640221625566483,1.762715973185891e-9,0.9932021498680115],"scale":[1.0,0.9999998807907105,1.0000001192092896]},{"name":"Bip002 L Finger02","translation":[0.07074201107025147,-1.1920928955078126e-7,0.0],"rotation":[1.8324128880919944e-9,0.06414267420768738,-3.04661385008842e-9,0.997940719127655],"scale":[1.0000001192092896,0.9999998211860657,1.0]},{"name":"Bip002 L Finger1","children":[13],"translation":[0.25803840160369875,-0.07605993747711182,0.000060439109802246097],"rotation":[0.06533004343509674,0.15509973466396333,-0.010403928346931935,0.985681414604187],"scale":[1.0,0.9999999403953552,0.9999997615814209]},{"name":"Bip002 L Finger11","children":[14],"translation":[0.06295228004455567,0.0,0.0],"rotation":[-1.8788470779185219e-9,0.11640221625566483,3.4289460160152886e-9,0.9932021498680115],"scale":[1.0000001192092896,1.0,0.9999998211860657]},{"name":"Bip002 L Finger12","translation":[0.06295216083526612,-5.960464477539063e-8,5.960464477539063e-8],"rotation":[9.683549073713494e-9,0.11640222370624542,3.0495184155654444e-9,0.9932021498680115],"scale":[1.0000001192092896,0.9999999403953552,0.9999998807907105]},{"name":"Bip002 L Finger2","children":[16],"translation":[0.2580385208129883,-0.025353312492370607,0.00002014636993408203],"rotation":[0.004240196663886309,0.2556978464126587,0.017382292076945306,0.9665911793708801],"scale":[1.0,1.0,0.9999998211860657]},{"name":"Bip002 L Finger21","children":[17],"translation":[0.0569310188293457,0.0,-5.960464477539063e-8],"rotation":[-1.8790085043463024e-9,0.1260981261730194,-5.042347872574737e-9,0.9920178055763245],"scale":[1.0000001192092896,1.0,0.9999998211860657]},{"name":"Bip002 L Finger22","translation":[0.06567466259002686,0.0,0.0],"rotation":[-4.196536451672728e-9,0.12609809637069703,6.279189168623134e-9,0.9920178055763245],"scale":[0.9999997615814209,1.0,1.0]},{"name":"Bip002 L Finger3","children":[19],"translation":[0.25801753997802737,0.03340023756027222,-0.00006508827209472656],"rotation":[-0.059630922973155978,0.3167688846588135,0.08301036804914475,0.9429798126220703],"scale":[1.0000001192092896,1.0,0.9999999403953552]},{"name":"Bip002 L Finger31","children":[20],"translation":[0.04921448230743408,2.9802322387695315e-8,5.960464477539063e-8],"rotation":[7.257911494029656e-10,0.15822038054466248,-1.3561641809545222e-9,0.9874038696289063],"scale":[1.000000238418579,1.0,0.9999999403953552]},{"name":"Bip002 L Finger32","translation":[0.05428910255432129,-2.9802322387695315e-8,0.0],"rotation":[-2.4133812726034877e-9,0.0780065655708313,2.510812002753937e-9,0.9969528317451477],"scale":[1.000000238418579,0.9999998807907105,0.9999999403953552]},{"name":"Bip002 L Finger4","children":[22],"translation":[0.24704039096832276,0.08190596103668213,-0.019670486450195314],"rotation":[-0.08681457489728928,0.24745160341262818,0.048052828758955,0.9638059735298157],"scale":[1.0000001192092896,1.0,0.9999998211860657]},{"name":"Bip002 L Finger41","children":[23],"translation":[0.038811326026916507,0.0,-1.1920928955078126e-7],"rotation":[-5.000861946768964e-9,0.11640222370624542,-5.896313659548014e-9,0.9932021498680115],"scale":[1.0000001192092896,1.0,0.9999998807907105]},{"name":"Bip002 L Finger42","translation":[0.03881120681762695,0.0,5.960464477539063e-8],"rotation":[8.813586527267603e-10,0.11640220880508423,3.353601174538312e-9,0.9932021498680115],"scale":[1.0,1.0,0.9999998211860657]},{"name":"Bip002 R Clavicle","children":[25],"translation":[-0.23000192642211915,-0.22659046947956086,0.02832210063934326],"rotation":[0.6361305117607117,-0.7690887451171875,0.03949691355228424,-0.04775436222553253],"scale":[0.9999999403953552,1.0,0.9999998807907105]},{"name":"Bip002 R UpperArm","children":[26],"translation":[0.2636745870113373,0.0,-7.450580596923828e-9],"rotation":[-0.033578574657440189,-0.039842069149017337,0.37206974625587466,0.9267411828041077],"scale":[1.0,0.9999999403953552,0.9999999403953552]},{"name":"Bip002 R Forearm","children":[27],"translation":[0.5116827487945557,0.0,1.4901161193847657e-8],"rotation":[-2.8218932746071348e-10,-0.1293603926897049,2.3248222902338968e-8,0.9915976524353027],"scale":[0.9999998807907105,1.0,1.0]},{"name":"Bip002 R Hand","children":[28,31,34,37,40],"translation":[0.4711427092552185,0.0,0.0],"rotation":[0.781765341758728,0.1683952361345291,0.08155836910009384,0.5948396921157837],"scale":[1.0000001192092896,0.9999998807907105,1.0]},{"name":"Bip002 R Finger0","children":[29],"translation":[0.06814885139465332,0.1017833948135376,-0.06761682033538819],"rotation":[-0.6496226787567139,0.13313676416873933,0.2793460488319397,0.6944283843040466],"scale":[1.0,1.0,1.0000001192092896]},{"name":"Bip002 R Finger01","children":[30],"translation":[0.07074224948883057,0.0,0.0],"rotation":[3.58451157644879e-9,0.11640221625566483,4.119504293242926e-9,0.9932021498680115],"scale":[1.0,0.9999999403953552,1.0]},{"name":"Bip002 R Finger02","translation":[0.07074189186096192,0.0,5.960464477539063e-8],"rotation":[5.042963824308799e-10,0.06414265930652619,-4.985999613182912e-9,0.997940719127655],"scale":[1.0,0.9999999403953552,1.0]},{"name":"Bip002 R Finger1","children":[32],"translation":[0.25803840160369875,0.07605987787246704,0.000060558319091796878],"rotation":[-0.06533004343509674,0.15509973466396333,0.01040392555296421,0.985681414604187],"scale":[1.0000001192092896,1.0,0.9999998211860657]},{"name":"Bip002 R Finger11","children":[33],"translation":[0.06295216083526612,-5.960464477539063e-8,0.0],"rotation":[1.878846855873917e-9,0.11640220880508423,-5.597105445787065e-9,0.9932021498680115],"scale":[1.0000001192092896,1.0,0.9999998807907105]},{"name":"Bip002 R Finger12","translation":[0.06295204162597656,5.960464477539063e-8,5.960464477539063e-8],"rotation":[-3.6999656671810045e-9,0.11640223115682602,6.099035942952469e-9,0.9932021498680115],"scale":[1.0000001192092896,0.9999999403953552,0.9999998211860657]},{"name":"Bip002 R Finger2","children":[35],"translation":[0.2580385208129883,0.025353312492370607,0.000020265579223632814],"rotation":[-0.0042401934042572979,0.2556978762149811,-0.017382292076945306,0.9665911793708801],"scale":[1.0000001192092896,1.0,0.9999998807907105]},{"name":"Bip002 R Finger21","children":[36],"translation":[0.0569310188293457,-1.1920928955078126e-7,0.0],"rotation":[4.69752459153483e-10,0.12609809637069703,-6.24620147271493e-11,0.9920178055763245],"scale":[1.0000001192092896,1.0,0.9999998807907105]},{"name":"Bip002 R Finger22","translation":[0.0656747817993164,1.1920928955078126e-7,0.0],"rotation":[9.395040301285463e-10,0.1260981261730194,-3.758016564603395e-9,0.9920178055763245],"scale":[1.0,1.0,0.9999998807907105]},{"name":"Bip002 R Finger3","children":[38],"translation":[0.25801753997802737,-0.03340023756027222,-0.00006496906280517578],"rotation":[0.059630926698446277,0.3167688548564911,-0.08301037549972534,0.9429798126220703],"scale":[1.000000238418579,0.9999998807907105,1.0]},{"name":"Bip002 R Finger31","children":[39],"translation":[0.04921460151672363,0.0,-1.1920928955078126e-7],"rotation":[-2.676862065342789e-9,0.15822038054466248,3.6019431881584298e-9,0.9874038100242615],"scale":[1.000000238418579,0.9999998807907105,1.0000001192092896]},{"name":"Bip002 R Finger32","translation":[0.05428886413574219,2.9802322387695315e-8,0.0],"rotation":[1.0490014412667393e-9,0.0780065506696701,-0.0,0.9969528317451477],"scale":[1.0000001192092896,0.9999998807907105,1.000000238418579]},{"name":"Bip002 R Finger4","children":[41],"translation":[0.24704039096832276,-0.08190596103668213,-0.019670486450195314],"rotation":[0.08681456744670868,0.24745160341262818,-0.0480528324842453,0.9638059139251709],"scale":[1.0000001192092896,1.0,0.9999998807907105]},{"name":"Bip002 R Finger41","children":[42],"translation":[0.038811326026916507,0.0,0.0],"rotation":[-3.859055297539271e-9,0.11640222370624542,8.884043500856365e-10,0.9932021498680115],"scale":[1.0000001192092896,1.0,0.9999999403953552]},{"name":"Bip002 R Finger42","translation":[0.038811326026916507,0.0,-5.960464477539063e-8],"rotation":[2.2836150748162255e-9,0.11640223115682602,2.8467954660271745e-9,0.9932021498680115],"scale":[0.9999998807907105,0.9999999403953552,1.0]},{"name":"Bip002 Head","translation":[0.18754291534423829,0.0,-1.4901161193847657e-8],"rotation":[-8.786147400992664e-14,-0.031222326681017877,-8.659633010665857e-8,0.9995124936103821],"scale":[1.0,0.9999999403953552,0.9999999403953552]},{"name":"Bip002 L Thigh","children":[45],"translation":[-0.2528039216995239,0.2641824185848236,-0.000475078821182251],"rotation":[-0.007310620043426752,0.014188270084559918,-0.9938216209411621,-0.10983564704656601],"scale":[1.0,1.0,1.0]},{"name":"Bip002 L Calf","children":[46],"translation":[0.6210788488388062,0.0,1.862645149230957e-9],"rotation":[-3.4676556764923208e-11,-0.021934064105153085,3.7065197577845767e-9,0.9997594356536865],"scale":[1.0,1.0,0.9999999403953552]},{"name":"Bip002 L Foot","children":[47],"translation":[0.6210787892341614,0.0,-5.587935447692871e-9],"rotation":[-0.13452646136283875,0.012528476305305958,0.1127152368426323,0.9843987822532654],"scale":[0.9999999403953552,0.9999999403953552,0.9999998807907105]},{"name":"Bip002 L Toe0","translation":[0.22456009685993195,0.0,-0.2889990508556366],"rotation":[1.5454311608209538e-8,0.7071067690849304,-1.5454311608209538e-8,0.7071067690849304],"scale":[0.9999998807907105,0.9999999403953552,0.9999999403953552]},{"name":"Bip002 R Thigh","children":[49],"translation":[-0.2528039216995239,-0.2641824185848236,-0.0004765428602695465],"rotation":[-0.007310314103960991,-0.014185512438416481,-0.9938216209411621,0.10983575135469437],"scale":[1.0,0.9999998807907105,1.0000001192092896]},{"name":"Bip002 R Calf","children":[50],"translation":[0.6210788488388062,-5.960464477539063e-8,9.313225746154786e-10],"rotation":[3.2684305262264959e-10,-0.021934064105153085,-1.0213622482491136e-11,0.9997594356536865],"scale":[1.0,0.9999998807907105,0.9999999403953552]},{"name":"Bip002 R Foot","children":[51],"translation":[0.6210787296295166,0.0,-5.587935447692871e-9],"rotation":[0.13452647626399995,0.012528462335467339,-0.11271531879901886,0.9843987822532654],"scale":[0.9999999403953552,1.0,0.9999999403953552]},{"name":"Bip002 R Toe0","translation":[0.22456009685993195,0.0,-0.2889990210533142],"rotation":[-1.0185953414065807e-8,0.7071067690849304,2.0722666249639589e-8,0.7071067690849304],"scale":[0.9999999403953552,1.0,0.9999999403953552]}],"accessors":[{"name":"InverseBindMatricesAccessor","bufferView":0,"componentType":5126,"count":52,"type":"MAT4"}],"bufferViews":[{"buffer":0,"byteLength":3328}],"buffers":[{"name":"InverseBindMatricesBuffer","uri":"cocos_skel_ibm.bin","byteLength":3328}],"skins":[{"name":"cocos_skel","inverseBindMatrices":0,"skeleton":0,"joints":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51]}]} \ No newline at end of file diff --git a/assets/res/model/cocos/cocos_skel.gltf.meta b/assets/res/model/cocos/cocos_skel.gltf.meta new file mode 100644 index 00000000..17c01b21 --- /dev/null +++ b/assets/res/model/cocos/cocos_skel.gltf.meta @@ -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 + } + ] + } + } +} diff --git a/assets/res/model/cocos/cocos_skel_ibm.bin b/assets/res/model/cocos/cocos_skel_ibm.bin new file mode 100644 index 00000000..cbe18e11 Binary files /dev/null and b/assets/res/model/cocos/cocos_skel_ibm.bin differ diff --git a/assets/res/model/cocos/cocos_skel_ibm.bin.meta b/assets/res/model/cocos/cocos_skel_ibm.bin.meta new file mode 100644 index 00000000..581657a2 --- /dev/null +++ b/assets/res/model/cocos/cocos_skel_ibm.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "8d2d3098-6841-41fc-af7f-4bac9e32b080", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/cocos_squat_anim.bin b/assets/res/model/cocos/cocos_squat_anim.bin new file mode 100644 index 00000000..22ad7359 Binary files /dev/null and b/assets/res/model/cocos/cocos_squat_anim.bin differ diff --git a/assets/res/model/cocos/cocos_squat_anim.bin.meta b/assets/res/model/cocos/cocos_squat_anim.bin.meta new file mode 100644 index 00000000..3e18596f --- /dev/null +++ b/assets/res/model/cocos/cocos_squat_anim.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "b9ab6374-4e67-4db2-bb75-0256c62f6c7b", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/cocosfinish_01.bin b/assets/res/model/cocos/cocosfinish_01.bin new file mode 100644 index 00000000..a3274d1d Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_01.bin differ diff --git a/assets/res/model/cocos/cocosfinish_01.bin.meta b/assets/res/model/cocos/cocosfinish_01.bin.meta new file mode 100644 index 00000000..b8b5732a --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_01.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "b3df5b21-2fe6-410e-a10d-3df317e61bb5", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/cocosfinish_01_baseColor.png b/assets/res/model/cocos/cocosfinish_01_baseColor.png new file mode 100644 index 00000000..d15a7168 Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_01_baseColor.png differ diff --git a/assets/res/model/cocos/cocosfinish_01_baseColor.png.meta b/assets/res/model/cocos/cocosfinish_01_baseColor.png.meta new file mode 100644 index 00000000..fd788e15 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_01_baseColor.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_01_baseColor", + "uuid": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/cocosfinish_01_emissive.png b/assets/res/model/cocos/cocosfinish_01_emissive.png new file mode 100644 index 00000000..e1efc593 Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_01_emissive.png differ diff --git a/assets/res/model/cocos/cocosfinish_01_emissive.png.meta b/assets/res/model/cocos/cocosfinish_01_emissive.png.meta new file mode 100644 index 00000000..c2816237 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_01_emissive.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "026c4a15-e07d-4053-86de-9f9fe30188e5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_01_emissive", + "uuid": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "026c4a15-e07d-4053-86de-9f9fe30188e5", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/cocosfinish_01_normal.png b/assets/res/model/cocos/cocosfinish_01_normal.png new file mode 100644 index 00000000..a2ee3aab Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_01_normal.png differ diff --git a/assets/res/model/cocos/cocosfinish_01_normal.png.meta b/assets/res/model/cocos/cocosfinish_01_normal.png.meta new file mode 100644 index 00000000..6f89a362 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_01_normal.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_01_normal", + "uuid": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a@6c48a", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/cocosfinish_01_occlusionRoughnessMetallic.png b/assets/res/model/cocos/cocosfinish_01_occlusionRoughnessMetallic.png new file mode 100644 index 00000000..7f729caf Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_01_occlusionRoughnessMetallic.png differ diff --git a/assets/res/model/cocos/cocosfinish_01_occlusionRoughnessMetallic.png.meta b/assets/res/model/cocos/cocosfinish_01_occlusionRoughnessMetallic.png.meta new file mode 100644 index 00000000..363f07c2 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_01_occlusionRoughnessMetallic.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_01_occlusionRoughnessMetallic", + "uuid": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a@6c48a", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/cocosfinish_02.bin b/assets/res/model/cocos/cocosfinish_02.bin new file mode 100644 index 00000000..df1497c0 Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_02.bin differ diff --git a/assets/res/model/cocos/cocosfinish_02.bin.meta b/assets/res/model/cocos/cocosfinish_02.bin.meta new file mode 100644 index 00000000..5a461958 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_02.bin.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.3", + "importer": "buffer", + "imported": true, + "uuid": "dcab7d1f-201e-45d8-911c-833cc5427723", + "files": [ + ".bin", + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/model/cocos/cocosfinish_02_baseColor.png b/assets/res/model/cocos/cocosfinish_02_baseColor.png new file mode 100644 index 00000000..ff634aad Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_02_baseColor.png differ diff --git a/assets/res/model/cocos/cocosfinish_02_baseColor.png.meta b/assets/res/model/cocos/cocosfinish_02_baseColor.png.meta new file mode 100644 index 00000000..63ac2ff6 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_02_baseColor.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "8949c1f1-9b2b-418c-b150-611a94543416", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_02_baseColor", + "uuid": "8949c1f1-9b2b-418c-b150-611a94543416@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "8949c1f1-9b2b-418c-b150-611a94543416", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "8949c1f1-9b2b-418c-b150-611a94543416@6c48a", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/cocosfinish_02_normal.png b/assets/res/model/cocos/cocosfinish_02_normal.png new file mode 100644 index 00000000..92620622 Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_02_normal.png differ diff --git a/assets/res/model/cocos/cocosfinish_02_normal.png.meta b/assets/res/model/cocos/cocosfinish_02_normal.png.meta new file mode 100644 index 00000000..07a00ca8 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_02_normal.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "19819162-ce3f-4f7c-8889-8b2f35bf274c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_02_normal", + "uuid": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "19819162-ce3f-4f7c-8889-8b2f35bf274c", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/cocosfinish_02_occlusionRoughnessMetallic.png b/assets/res/model/cocos/cocosfinish_02_occlusionRoughnessMetallic.png new file mode 100644 index 00000000..a4116744 Binary files /dev/null and b/assets/res/model/cocos/cocosfinish_02_occlusionRoughnessMetallic.png differ diff --git a/assets/res/model/cocos/cocosfinish_02_occlusionRoughnessMetallic.png.meta b/assets/res/model/cocos/cocosfinish_02_occlusionRoughnessMetallic.png.meta new file mode 100644 index 00000000..88216373 --- /dev/null +++ b/assets/res/model/cocos/cocosfinish_02_occlusionRoughnessMetallic.png.meta @@ -0,0 +1,43 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "cd618de5-59fc-4899-ba4f-55195f3e24ce", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "ver": "1.0.22", + "importer": "texture", + "name": "texture", + "id": "6c48a", + "displayName": "cocosfinish_02_occlusionRoughnessMetallic", + "uuid": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "wrapModeS": "repeat", + "wrapModeT": "repeat", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "premultiplyAlpha": false, + "anisotropy": 1, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd618de5-59fc-4899-ba4f-55195f3e24ce", + "visible": false + } + } + }, + "userData": { + "type": "texture", + "redirect": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/model/cocos/helmet.mtl b/assets/res/model/cocos/helmet.mtl new file mode 100644 index 00000000..aff694c4 --- /dev/null +++ b/assets/res/model/cocos/helmet.mtl @@ -0,0 +1,58 @@ +{ + "__type__": "cc.Material", + "_name": "", + "_objFlags": 0, + "_native": "", + "_effectAsset": { + "__uuid__": "1baf0fc9-befa-459c-8bdd-af1a450a0319" + }, + "_techIdx": "1", + "_defines": [ + { + "USE_NORMAL_MAP": true, + "USE_ALBEDO_MAP": true, + "USE_METALLIC_ROUGHNESS_MAP": true, + "ROUGHNESS_CHANNEL": "g", + "METALLIC_CHANNEL": "b", + "OCCLUSION_CHANNEL": "g", + "USE_SKINNING": true + } + ], + "_states": [ + { + "blendState": { + "targets": [ + {} + ] + }, + "depthStencilState": {}, + "rasterizerState": {} + } + ], + "_props": [ + { + "emissive": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "normalMap": { + "__uuid__": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a" + }, + "pbrMap": { + "__uuid__": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a" + }, + "metallicRoughnessMap": { + "__uuid__": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a" + }, + "occlusion": 0, + "roughness": 1, + "metallic": 1, + "mainTexture": { + "__uuid__": "8949c1f1-9b2b-418c-b150-611a94543416@6c48a" + } + } + ] +} \ No newline at end of file diff --git a/assets/res/model/cocos/helmet.mtl.meta b/assets/res/model/cocos/helmet.mtl.meta new file mode 100644 index 00000000..b8018590 --- /dev/null +++ b/assets/res/model/cocos/helmet.mtl.meta @@ -0,0 +1,11 @@ +{ + "ver": "1.0.21", + "importer": "material", + "imported": true, + "uuid": "7e81a899-6c7c-493d-80cf-e4f730e4f48f", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/res/texture.meta b/assets/res/texture.meta new file mode 100644 index 00000000..21699b8a --- /dev/null +++ b/assets/res/texture.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "4244dadc-0495-409c-9ace-55668a568bd3", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/res/texture/fightMove01.png b/assets/res/texture/fightMove01.png new file mode 100644 index 00000000..f7f4a928 Binary files /dev/null and b/assets/res/texture/fightMove01.png differ diff --git a/assets/res/texture/fightMove01.png.meta b/assets/res/texture/fightMove01.png.meta new file mode 100644 index 00000000..7035dd46 --- /dev/null +++ b/assets/res/texture/fightMove01.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "9d24beec-7f21-498f-9855-4dd1a9071aaf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9d24beec-7f21-498f-9855-4dd1a9071aaf@6c48a", + "displayName": "fightMove01", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "9d24beec-7f21-498f-9855-4dd1a9071aaf", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9d24beec-7f21-498f-9855-4dd1a9071aaf@f9941", + "displayName": "fightMove01", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 263, + "height": 263, + "rawWidth": 263, + "rawHeight": 263, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "isUuid": true, + "imageUuidOrDatabaseUri": "9d24beec-7f21-498f-9855-4dd1a9071aaf@6c48a", + "atlasUuid": "", + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -131.5, + -131.5, + 0, + 131.5, + -131.5, + 0, + -131.5, + 131.5, + 0, + 131.5, + 131.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 263, + 263, + 263, + 0, + 0, + 263, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -131.5, + -131.5, + 0 + ], + "maxPos": [ + 131.5, + 131.5, + 0 + ] + } + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "hasAlpha": true, + "type": "sprite-frame", + "redirect": "9d24beec-7f21-498f-9855-4dd1a9071aaf@f9941", + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/res/texture/fightMove02.png b/assets/res/texture/fightMove02.png new file mode 100644 index 00000000..1b481a04 Binary files /dev/null and b/assets/res/texture/fightMove02.png differ diff --git a/assets/res/texture/fightMove02.png.meta b/assets/res/texture/fightMove02.png.meta new file mode 100644 index 00000000..afffa7af --- /dev/null +++ b/assets/res/texture/fightMove02.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.26", + "importer": "image", + "imported": true, + "uuid": "d945ed29-80ec-4d3f-93c0-7f016f7b29b6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d945ed29-80ec-4d3f-93c0-7f016f7b29b6@6c48a", + "displayName": "fightMove02", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0, + "isUuid": true, + "imageUuidOrDatabaseUri": "d945ed29-80ec-4d3f-93c0-7f016f7b29b6", + "visible": false + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d945ed29-80ec-4d3f-93c0-7f016f7b29b6@f9941", + "displayName": "fightMove02", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 159, + "height": 159, + "rawWidth": 159, + "rawHeight": 159, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "isUuid": true, + "imageUuidOrDatabaseUri": "d945ed29-80ec-4d3f-93c0-7f016f7b29b6@6c48a", + "atlasUuid": "", + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -79.5, + -79.5, + 0, + 79.5, + -79.5, + 0, + -79.5, + 79.5, + 0, + 79.5, + 79.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 159, + 159, + 159, + 0, + 0, + 159, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -79.5, + -79.5, + 0 + ], + "maxPos": [ + 79.5, + 79.5, + 0 + ] + } + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "hasAlpha": true, + "type": "sprite-frame", + "redirect": "d945ed29-80ec-4d3f-93c0-7f016f7b29b6@f9941", + "fixAlphaTransparencyArtifacts": false + } +} diff --git a/assets/resources.meta b/assets/resources.meta new file mode 100644 index 00000000..8cd0e7e2 --- /dev/null +++ b/assets/resources.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "11349493-059b-466d-8a63-bc29a4d895cd", + "files": [], + "subMetas": {}, + "userData": { + "isBundle": true, + "bundleName": "resources", + "priority": 8, + "bundleConfigID": "auto_98AwgBoURL0KsT0uXAsTE4" + } +} diff --git a/assets/resources/avatar.meta b/assets/resources/avatar.meta new file mode 100644 index 00000000..a80a234c --- /dev/null +++ b/assets/resources/avatar.meta @@ -0,0 +1,9 @@ +{ + "ver": "0.0.1", + "importer": "*", + "imported": true, + "uuid": "e702ec14-4b07-4a05-9908-de47767ed821", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/common.meta b/assets/resources/common.meta new file mode 100644 index 00000000..67eefe23 --- /dev/null +++ b/assets/resources/common.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b9dc5d89-1070-4f62-8a31-5b96306c192b", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/resources/common/anim.meta b/assets/resources/common/anim.meta new file mode 100644 index 00000000..0e821b16 --- /dev/null +++ b/assets/resources/common/anim.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "0b70ab49-9f2b-4cbb-b4cb-849b2e477598", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/resources/common/anim/button_scale_end.anim b/assets/resources/common/anim/button_scale_end.anim new file mode 100644 index 00000000..ac8a34d5 --- /dev/null +++ b/assets/resources/common/anim/button_scale_end.anim @@ -0,0 +1,180 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "button_scale_end", + "_objFlags": 0, + "_native": "", + "sample": 60, + "speed": 1, + "wrapMode": 1, + "_duration": 0.08333333333333333, + "_hash": 3362078797, + "_tracks": [ + { + "__id__": 1 + } + ], + "_events": [], + "_exoticAnimation": null + }, + { + "__type__": "cc.animation.VectorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + } + }, + "_channels": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + }, + { + "__id__": 9 + } + ], + "_nComponents": 3 + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + "scale" + ] + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 4 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.08333333333333333 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.95, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 6 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.08333333333333333 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.95, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 8 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.08333333333333333 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.95, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 10 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [], + "_values": [], + "preExtrapolation": 1, + "postExtrapolation": 1 + } +] \ No newline at end of file diff --git a/assets/resources/common/anim/button_scale_end.anim.meta b/assets/resources/common/anim/button_scale_end.anim.meta new file mode 100644 index 00000000..bab46127 --- /dev/null +++ b/assets/resources/common/anim/button_scale_end.anim.meta @@ -0,0 +1,13 @@ +{ + "ver": "2.0.3", + "importer": "animation-clip", + "imported": true, + "uuid": "0430e564-9665-435e-9895-7b8e19fcb0b9", + "files": [ + ".cconb" + ], + "subMetas": {}, + "userData": { + "name": "button_scale_end" + } +} diff --git a/assets/resources/common/anim/button_scale_start.anim b/assets/resources/common/anim/button_scale_start.anim new file mode 100644 index 00000000..57d7e7d3 --- /dev/null +++ b/assets/resources/common/anim/button_scale_start.anim @@ -0,0 +1,180 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "button_scale_start", + "_objFlags": 0, + "_native": "", + "sample": 60, + "speed": 1, + "wrapMode": 1, + "_duration": 0.08333333333333333, + "_hash": 250411285, + "_tracks": [ + { + "__id__": 1 + } + ], + "_events": [], + "_exoticAnimation": null + }, + { + "__type__": "cc.animation.VectorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + } + }, + "_channels": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + }, + { + "__id__": 9 + } + ], + "_nComponents": 3 + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + "scale" + ] + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 4 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.08333333333333333 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.95, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 6 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.08333333333333333 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.95, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 8 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.08333333333333333 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.95, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 10 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [], + "_values": [], + "preExtrapolation": 1, + "postExtrapolation": 1 + } +] \ No newline at end of file diff --git a/assets/resources/common/anim/button_scale_start.anim.meta b/assets/resources/common/anim/button_scale_start.anim.meta new file mode 100644 index 00000000..9ba78a4f --- /dev/null +++ b/assets/resources/common/anim/button_scale_start.anim.meta @@ -0,0 +1,13 @@ +{ + "ver": "2.0.3", + "importer": "animation-clip", + "imported": true, + "uuid": "99c3c7ad-3086-4333-81e6-19b82da0c89d", + "files": [ + ".cconb" + ], + "subMetas": {}, + "userData": { + "name": "button_scale_start" + } +} diff --git a/assets/resources/common/anim/notify.anim b/assets/resources/common/anim/notify.anim new file mode 100644 index 00000000..fabc8fbd --- /dev/null +++ b/assets/resources/common/anim/notify.anim @@ -0,0 +1,710 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "notify", + "_objFlags": 0, + "_native": "", + "sample": 60, + "speed": 1, + "wrapMode": 1, + "enableTrsBlending": false, + "_duration": 1.25, + "_hash": 1779385867, + "_tracks": [ + { + "__id__": 1 + }, + { + "__id__": 11 + }, + { + "__id__": 23 + } + ], + "_events": [], + "_exoticAnimation": null + }, + { + "__type__": "cc.animation.VectorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + } + }, + "_channels": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + }, + { + "__id__": 9 + } + ], + "_nComponents": 3 + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + "position" + ] + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 4 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 6 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 300, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 8 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 10 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [], + "_values": [], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.ColorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 12 + } + }, + "_channels": [ + { + "__id__": 15 + }, + { + "__id__": 17 + }, + { + "__id__": 19 + }, + { + "__id__": 21 + } + ] + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 13 + }, + { + "__id__": 14 + }, + "color" + ] + }, + { + "__type__": "cc.animation.HierarchyPath", + "path": "lab_content" + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Label" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 16 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 18 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 20 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 22 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.ColorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 24 + } + }, + "_channels": [ + { + "__id__": 26 + }, + { + "__id__": 28 + }, + { + "__id__": 30 + }, + { + "__id__": 32 + } + ] + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 25 + }, + "color" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 27 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 29 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 31 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 33 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.8333333333333334, + 1.25 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 0, + "leftTangent": 0, + "leftTangentWeight": 0, + "easingMethod": 0 + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + } +] \ No newline at end of file diff --git a/assets/resources/common/anim/notify.anim.meta b/assets/resources/common/anim/notify.anim.meta new file mode 100644 index 00000000..da155ea9 --- /dev/null +++ b/assets/resources/common/anim/notify.anim.meta @@ -0,0 +1,13 @@ +{ + "ver": "2.0.3", + "importer": "animation-clip", + "imported": true, + "uuid": "4cecde51-d46d-4b20-b02e-e58f063ec56f", + "files": [ + ".cconb" + ], + "subMetas": {}, + "userData": { + "name": "notify" + } +} diff --git a/assets/resources/common/prefab.meta b/assets/resources/common/prefab.meta new file mode 100644 index 00000000..18d910b5 --- /dev/null +++ b/assets/resources/common/prefab.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "853ce1af-fb40-4f30-aebb-f12234f3d7fe", + "files": [], + "subMetas": {}, + "userData": { + "compressionType": {}, + "isRemoteBundle": {} + } +} diff --git a/assets/resources/common/prefab/netinstable.prefab b/assets/resources/common/prefab/netinstable.prefab new file mode 100644 index 00000000..8d8a9ce2 --- /dev/null +++ b/assets/resources/common/prefab/netinstable.prefab @@ -0,0 +1,459 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "netinstable", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false, + "asyncLoadAssets": false + }, + { + "__type__": "cc.Node", + "_name": "netinstable", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 10 + } + ], + "_active": true, + "_components": [ + { + "__id__": 16 + }, + { + "__id__": 18 + }, + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 22 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1280, + "height": 720 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fbb9ezFuVDaKU7Tqqncexy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 60 + }, + "_spriteFrame": { + "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1dTEwstYVMdL5jWZ5yFCIZ" + }, + { + "__type__": "cc.Widget", + "_name": "loading", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 2, + "_originalHeight": 2, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a5eUOPMadAdp+Jl5/FXe3j" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5KGHiK9REY4bg8g3FbCdj" + }, + { + "__type__": "cc.Node", + "_name": "loading", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 15 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 138 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "daXOgzkhFPR5dIT+JDB+2t" + }, + { + "__type__": "cc.Sprite", + "_name": "loading", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 14 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "274b7ff9-5a0d-4c4b-8fd2-96d6782ae51e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3efK3xmdVFf4X3ErJtErAe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b4DOS8ivZJwbuvCM8qdysu" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 17 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1280, + "height": 720 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "77N2cid5pKDpXplRH/AWEU" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 19 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 2, + "_originalHeight": 2, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "63zNQq8NlBQ5QWzOJ4Kgjs" + }, + { + "__type__": "95143M/82NCOLKGzw14JlmS", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "loading": { + "__id__": 10 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "09pxnWgwNIG6qLtIFwR+cp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a0daVw8DRLi6ToMaTA0VS2" + } +] \ No newline at end of file diff --git a/assets/resources/common/prefab/netinstable.prefab.meta b/assets/resources/common/prefab/netinstable.prefab.meta new file mode 100644 index 00000000..7a068804 --- /dev/null +++ b/assets/resources/common/prefab/netinstable.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "9cc71d8c-192a-4234-8204-352f42b95c65", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "netinstable" + } +} diff --git a/assets/resources/common/prefab/notify.prefab b/assets/resources/common/prefab/notify.prefab new file mode 100644 index 00000000..05e8342d --- /dev/null +++ b/assets/resources/common/prefab/notify.prefab @@ -0,0 +1,354 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "notify", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false, + "asyncLoadAssets": false + }, + { + "__type__": "cc.Node", + "_name": "notify", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 12 + }, + { + "__id__": 14 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 18 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "lab_content", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131.21, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "99X9v0jUlJNZIh0XrXacci" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "content", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "16EtbFHdZJE6XKV6ws1G8+" + }, + { + "__type__": "110c8vEd5NEPL/N9meGQnaX", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_params": [], + "_dataID": "", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e0rVPeXXFGD6gzXeFEDtBF" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ddsPDrtFpNTpbV/TewBYOo" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 11 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 539, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "51DJ7yv09KnoNkqSbMfoJS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 13 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b1d5a976-33cc-4622-a9da-a2385bee6cc4@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23CbWnuJdPJYsCIbhHA6dc" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 15 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "4cecde51-d46d-4b20-b02e-e58f063ec56f", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "4cecde51-d46d-4b20-b02e-e58f063ec56f", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49S2DJCTxMnLx+UXQk11q0" + }, + { + "__type__": "01391Mp6X1Gn554rkzavN4K", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 17 + }, + "lab_content": { + "__id__": 5 + }, + "animation": { + "__id__": 14 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "965Ml9gPBIqJ2+GUadTe+K" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fj6jVgO1KzKob1u6D65Ik" + } +] \ No newline at end of file diff --git a/assets/resources/common/prefab/notify.prefab.meta b/assets/resources/common/prefab/notify.prefab.meta new file mode 100644 index 00000000..315d9650 --- /dev/null +++ b/assets/resources/common/prefab/notify.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "10285c1d-979d-4a7e-80c0-86e0dc2a65d8", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "notify" + } +} diff --git a/assets/resources/common/prefab/window.prefab b/assets/resources/common/prefab/window.prefab new file mode 100644 index 00000000..b98e2c66 --- /dev/null +++ b/assets/resources/common/prefab/window.prefab @@ -0,0 +1,1287 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "window", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false, + "asyncLoadAssets": false + }, + { + "__type__": "cc.Node", + "_name": "window", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 10 + }, + { + "__id__": 18 + }, + { + "__id__": 37 + } + ], + "_active": true, + "_components": [ + { + "__id__": 56 + }, + { + "__id__": 58 + }, + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 62 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "lab_title", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 114, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1c9xohlJtL3bm53voN5DeV" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "标题", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "26eZlgc6xJWqYRq4rBoG6R" + }, + { + "__type__": "110c8vEd5NEPL/N9meGQnaX", + "_name": "lab_ok", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_params": [], + "_dataID": "", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fP6uezZFLNIVBK2eBUVF/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "42TIPOfhhM7ra85tXw74QR" + }, + { + "__type__": "cc.Node", + "_name": "lab_content", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 17 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 12, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 420, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49SU+NRCVFC7lotcT5Arsj" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 14 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "内容", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 26, + "_fontSize": 26, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 3, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "867mEteZhIVLc5LxzUTUW5" + }, + { + "__type__": "110c8vEd5NEPL/N9meGQnaX", + "_name": "lab_ok", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 16 + }, + "_params": [], + "_dataID": "", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b52VT1wcdHq5Nyh8GrHCPS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fk7nP/NJBI7+oI60VkgZO" + }, + { + "__type__": "cc.Node", + "_name": "btn_ok", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 19 + } + ], + "_active": true, + "_components": [ + { + "__id__": 27 + }, + { + "__id__": 29 + }, + { + "__id__": 31 + }, + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 36 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -89, + "y": -100, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "lab_ok", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 22 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 26 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "Label", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44bD80KHZProBBM3AMP1KY" + }, + { + "__type__": "cc.Label", + "_name": "Label