├── .gitignore ├── README.md ├── assets ├── Animations.meta ├── Animations │ ├── oneStep.anim │ ├── oneStep.anim.meta │ ├── twoStep.anim │ └── twoStep.anim.meta ├── Prefabs.meta ├── Prefabs │ ├── Cube.prefab │ └── Cube.prefab.meta ├── Scenes.meta ├── Scenes │ ├── Main.scene │ └── Main.scene.meta ├── Scipts.meta ├── Scipts │ ├── GameManager.ts │ ├── GameManager.ts.meta │ ├── PlayerController.ts │ └── PlayerController.ts.meta ├── cocos.meta └── cocos │ ├── Cocos.prefab │ ├── Cocos.prefab.meta │ ├── animations.meta │ ├── animations │ ├── cocos_anim_attack.bin │ ├── cocos_anim_attack.bin.meta │ ├── cocos_anim_attack.gltf │ ├── cocos_anim_attack.gltf.meta │ ├── cocos_anim_die.bin │ ├── cocos_anim_die.bin.meta │ ├── cocos_anim_die.gltf │ ├── cocos_anim_die.gltf.meta │ ├── cocos_anim_down.bin │ ├── cocos_anim_down.bin.meta │ ├── cocos_anim_down.gltf │ ├── cocos_anim_down.gltf.meta │ ├── cocos_anim_hurt.bin │ ├── cocos_anim_hurt.bin.meta │ ├── cocos_anim_hurt.gltf │ ├── cocos_anim_hurt.gltf.meta │ ├── cocos_anim_idle.bin │ ├── cocos_anim_idle.bin.meta │ ├── cocos_anim_idle.gltf │ ├── cocos_anim_idle.gltf.meta │ ├── cocos_anim_jump.bin │ ├── cocos_anim_jump.bin.meta │ ├── cocos_anim_jump.gltf │ ├── cocos_anim_jump.gltf.meta │ ├── cocos_anim_run.bin │ ├── cocos_anim_run.bin.meta │ ├── cocos_anim_run.gltf │ ├── cocos_anim_run.gltf.meta │ ├── cocos_anim_shoot.bin │ ├── cocos_anim_shoot.bin.meta │ ├── cocos_anim_shoot.gltf │ ├── cocos_anim_shoot.gltf.meta │ ├── cocos_anim_squat.bin │ ├── cocos_anim_squat.bin.meta │ ├── cocos_anim_squat.gltf │ ├── cocos_anim_squat.gltf.meta │ ├── cocos_anim_walk.bin │ ├── cocos_anim_walk.bin.meta │ ├── cocos_anim_walk.gltf │ └── cocos_anim_walk.gltf.meta │ ├── body.mtl │ ├── body.mtl.meta │ ├── cocos_mesh.gltf │ ├── cocos_mesh.gltf.meta │ ├── cocos_mesh_helmet.gltf │ ├── cocos_mesh_helmet.gltf.meta │ ├── cocos_skel.gltf │ ├── cocos_skel.gltf.meta │ ├── cocos_skel_ibm.bin │ ├── cocos_skel_ibm.bin.meta │ ├── cocos_squat_anim.bin │ ├── cocos_squat_anim.bin.meta │ ├── cocosfinish_01.bin │ ├── cocosfinish_01.bin.meta │ ├── cocosfinish_01_baseColor.png │ ├── cocosfinish_01_baseColor.png.meta │ ├── cocosfinish_01_emissive.png │ ├── cocosfinish_01_emissive.png.meta │ ├── cocosfinish_01_normal.png │ ├── cocosfinish_01_normal.png.meta │ ├── cocosfinish_01_occlusionRoughnessMetallic.png │ ├── cocosfinish_01_occlusionRoughnessMetallic.png.meta │ ├── cocosfinish_02.bin │ ├── cocosfinish_02.bin.meta │ ├── cocosfinish_02_baseColor.png │ ├── cocosfinish_02_baseColor.png.meta │ ├── cocosfinish_02_normal.png │ ├── cocosfinish_02_normal.png.meta │ ├── cocosfinish_02_occlusionRoughnessMetallic.png │ ├── cocosfinish_02_occlusionRoughnessMetallic.png.meta │ ├── helmet.mtl │ └── helmet.mtl.meta ├── package.json ├── profiles ├── packages │ ├── assets.json │ ├── builder.json │ ├── hierarchy.json │ ├── project-setting.json │ └── scene.json └── v2 │ └── packages │ ├── builder.json │ ├── device.json │ ├── engine.json │ └── scene.json ├── settings ├── packages │ ├── builder.json │ └── project-setting.json └── v2 │ └── packages │ ├── builder.json │ ├── engine.json │ ├── project-setting.json │ └── project.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | #///////////////////////////////////////////////////////////////////////////// 2 | # Cocos3D Projects 3 | #///////////////////////////////////////////////////////////////////////////// 4 | 5 | library/ 6 | temp/ 7 | local/ 8 | build/ 9 | 10 | #///////////////////////////////////////////////////////////////////////////// 11 | # Logs and databases 12 | #///////////////////////////////////////////////////////////////////////////// 13 | 14 | *.log 15 | *.sql 16 | *.sqlite 17 | 18 | #///////////////////////////////////////////////////////////////////////////// 19 | # files for debugger 20 | #///////////////////////////////////////////////////////////////////////////// 21 | 22 | *.sln 23 | *.csproj 24 | *.pidb 25 | *.unityproj 26 | *.suo 27 | 28 | #///////////////////////////////////////////////////////////////////////////// 29 | # OS generated files 30 | #///////////////////////////////////////////////////////////////////////////// 31 | 32 | .DS_Store 33 | ehthumbs.db 34 | Thumbs.db 35 | 36 | #///////////////////////////////////////////////////////////////////////////// 37 | # exvim files 38 | #///////////////////////////////////////////////////////////////////////////// 39 | 40 | *.err 41 | *.err.meta 42 | *.exvim 43 | *.exvim.meta 44 | *.vimentry 45 | *.vimentry.meta 46 | *.vimproject 47 | *.vimproject.meta 48 | .vimfiles.*/ 49 | .exvim.*/ 50 | quick_gen_project_*_autogen.bat 51 | quick_gen_project_*_autogen.bat.meta 52 | quick_gen_project_*_autogen.sh 53 | quick_gen_project_*_autogen.sh.meta 54 | .exvim.app 55 | 56 | #///////////////////////////////////////////////////////////////////////////// 57 | # webstorm files 58 | #///////////////////////////////////////////////////////////////////////////// 59 | 60 | .idea/ 61 | 62 | #////////////////////////// 63 | # VS Code 64 | #////////////////////////// 65 | 66 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tutorial-mind-your-step-3d 2 | 3 | Cocos Creator learning tutorial 4 | 5 | - [English tutorial](https://docs.cocos.com/creator/manual/en/getting-started/first-game/) 6 | - [Chinese tutorial](https://docs.cocos.com/creator/manual/zh/getting-started/first-game/) 7 | -------------------------------------------------------------------------------- /assets/Animations.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4467faba-2da9-4cce-88b9-b4680909c97b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/Animations/oneStep.anim: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.AnimationClip", 4 | "_name": "oneStep", 5 | "_objFlags": 0, 6 | "_native": "", 7 | "sample": 30, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "_curves": [ 11 | { 12 | "modifiers": [ 13 | { 14 | "__id__": 1 15 | }, 16 | "position" 17 | ], 18 | "data": { 19 | "keys": 0, 20 | "values": [ 21 | { 22 | "__type__": "cc.Vec3", 23 | "x": 0, 24 | "y": 0, 25 | "z": 0 26 | }, 27 | { 28 | "__type__": "cc.Vec3", 29 | "x": 0, 30 | "y": 0.5, 31 | "z": 0 32 | }, 33 | { 34 | "__type__": "cc.Vec3", 35 | "x": 0, 36 | "y": 0, 37 | "z": 0 38 | } 39 | ], 40 | "easingMethods": [ 41 | null, 42 | null, 43 | null 44 | ] 45 | } 46 | } 47 | ], 48 | "events": [], 49 | "_duration": 0.3, 50 | "_keys": [ 51 | [ 52 | 0, 53 | 0.16666666666666666, 54 | 0.3 55 | ] 56 | ], 57 | "_stepness": 0 58 | }, 59 | { 60 | "__type__": "cc.animation.HierarchyPath", 61 | "path": "/" 62 | } 63 | ] 64 | -------------------------------------------------------------------------------- /assets/Animations/oneStep.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "animation-clip", 4 | "imported": true, 5 | "uuid": "f9cd731b-eb01-4aa7-9da2-483235277649", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "name": "oneStep" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/Animations/twoStep.anim: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.AnimationClip", 4 | "_name": "twoStep", 5 | "_objFlags": 0, 6 | "_native": "", 7 | "sample": 30, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "_curves": [ 11 | { 12 | "modifiers": [ 13 | { 14 | "__id__": 1 15 | }, 16 | "position" 17 | ], 18 | "data": { 19 | "keys": 0, 20 | "values": [ 21 | { 22 | "__type__": "cc.Vec3", 23 | "x": 0, 24 | "y": 0, 25 | "z": 0 26 | }, 27 | { 28 | "__type__": "cc.Vec3", 29 | "x": 0, 30 | "y": 1, 31 | "z": 0 32 | }, 33 | { 34 | "__type__": "cc.Vec3", 35 | "x": 0, 36 | "y": 0, 37 | "z": 0 38 | } 39 | ], 40 | "easingMethods": [ 41 | null, 42 | null, 43 | null 44 | ] 45 | } 46 | } 47 | ], 48 | "events": [], 49 | "_duration": 0.3, 50 | "_keys": [ 51 | [ 52 | 0, 53 | 0.16666666666666666, 54 | 0.3 55 | ] 56 | ], 57 | "_stepness": 0 58 | }, 59 | { 60 | "__type__": "cc.animation.HierarchyPath", 61 | "path": "/" 62 | } 63 | ] 64 | -------------------------------------------------------------------------------- /assets/Animations/twoStep.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "animation-clip", 4 | "imported": true, 5 | "uuid": "8868942f-9687-4d66-a73a-14e2a99047ff", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "name": "twoStep" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "aebb133c-99a8-446b-909e-12679d83a884", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/Prefabs/Cube.prefab: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.Prefab", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_native": "", 7 | "data": { 8 | "__id__": 1 9 | }, 10 | "optimizationPolicy": 0, 11 | "asyncLoadAssets": false 12 | }, 13 | { 14 | "__type__": "cc.Node", 15 | "_name": "Cube", 16 | "_objFlags": 0, 17 | "_parent": null, 18 | "_children": [], 19 | "_active": true, 20 | "_components": [ 21 | { 22 | "__id__": 2 23 | } 24 | ], 25 | "_prefab": { 26 | "__id__": 3 27 | }, 28 | "_lpos": { 29 | "__type__": "cc.Vec3", 30 | "x": 0, 31 | "y": -1.5, 32 | "z": 0 33 | }, 34 | "_lrot": { 35 | "__type__": "cc.Quat", 36 | "x": 0, 37 | "y": 0, 38 | "z": 0, 39 | "w": 1 40 | }, 41 | "_lscale": { 42 | "__type__": "cc.Vec3", 43 | "x": 1, 44 | "y": 1, 45 | "z": 1 46 | }, 47 | "_layer": 1073741824, 48 | "_euler": { 49 | "__type__": "cc.Vec3", 50 | "x": 0, 51 | "y": 0, 52 | "z": 0 53 | }, 54 | "_id": "8aSaYDbORPsKJxIFcLARvY" 55 | }, 56 | { 57 | "__type__": "cc.MeshRenderer", 58 | "_name": "Cube", 59 | "_objFlags": 0, 60 | "node": { 61 | "__id__": 1 62 | }, 63 | "_enabled": true, 64 | "_materials": [ 65 | { 66 | "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41" 67 | } 68 | ], 69 | "_viewID": 0, 70 | "_mesh": { 71 | "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a" 72 | }, 73 | "_shadowCastingMode": 0, 74 | "_receiveShadows": false, 75 | "_id": "92Dn0FhjZNFZd0+3oJt+IH", 76 | "__prefab": { 77 | "__id__": 4 78 | } 79 | }, 80 | { 81 | "__type__": "cc.PrefabInfo", 82 | "root": { 83 | "__id__": 1 84 | }, 85 | "asset": { 86 | "__id__": 0 87 | }, 88 | "fileId": "81nUK45HxMyqFIxPtA6L1a" 89 | }, 90 | { 91 | "__type__": "cc.CompPrefabInfo", 92 | "fileId": "2erEQtxdtBSo6YwRhlmlbt" 93 | } 94 | ] 95 | -------------------------------------------------------------------------------- /assets/Prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "eb7138f8-eb1f-433e-ae2c-77ff499c8e14", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Cube" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "fb3c51e5-0f53-479f-9612-638350748401", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/Scenes/Main.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "6962d389-b02c-41bc-937c-43c2f47d6fbc", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/Scipts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "537d3fb8-d822-4a66-8277-c8634e652b43", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/Scipts/GameManager.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, Component, Prefab, instantiate, Node, Label, CCInteger, Vec3 } from "cc"; 2 | import { PlayerController } from "./PlayerController"; 3 | const { ccclass, property } = _decorator; 4 | 5 | enum BlockType{ 6 | BT_NONE, 7 | BT_STONE, 8 | }; 9 | 10 | enum GameState{ 11 | GS_INIT, 12 | GS_PLAYING, 13 | GS_END, 14 | }; 15 | 16 | @ccclass("GameManager") 17 | export class GameManager extends Component { 18 | 19 | @property({type: Prefab}) 20 | public cubePrfb: Prefab|null = null; 21 | @property({type: CCInteger}) 22 | public roadLength: Number = 50; 23 | private _road: BlockType[] = []; 24 | @property({type: Node}) 25 | public startMenu: Node|null = null; 26 | @property({type: PlayerController}) 27 | public playerCtrl: PlayerController|null = null; 28 | @property({type: Label}) 29 | public stepsLabel: Label|null = null; 30 | 31 | start () { 32 | this.curState = GameState.GS_INIT; 33 | this.playerCtrl?.node.on('JumpEnd', this.onPlayerJumpEnd, this); 34 | } 35 | 36 | init() { 37 | if (this.startMenu) { 38 | this.startMenu.active = true; 39 | } 40 | 41 | this.generateRoad(); 42 | 43 | if (this.playerCtrl) { 44 | this.playerCtrl.setInputActive(false); 45 | this.playerCtrl.node.setPosition(Vec3.ZERO); 46 | this.playerCtrl.reset(); 47 | } 48 | } 49 | 50 | set curState (value: GameState) { 51 | switch(value) { 52 | case GameState.GS_INIT: 53 | this.init(); 54 | break; 55 | case GameState.GS_PLAYING: 56 | if (this.startMenu) { 57 | this.startMenu.active = false; 58 | } 59 | 60 | if (this.stepsLabel) { 61 | this.stepsLabel.string = '0'; // 将步数重置为0 62 | } 63 | 64 | setTimeout(() => { //直接设置active会直接开始监听鼠标事件,做了一下延迟处理 65 | if (this.playerCtrl) { 66 | this.playerCtrl.setInputActive(true); 67 | } 68 | }, 0.1); 69 | break; 70 | case GameState.GS_END: 71 | break; 72 | } 73 | } 74 | 75 | generateRoad() { 76 | 77 | this.node.removeAllChildren(); 78 | 79 | this._road = []; 80 | // startPos 81 | this._road.push(BlockType.BT_STONE); 82 | 83 | for (let i = 1; i < this.roadLength; i++) { 84 | if (this._road[i-1] === BlockType.BT_NONE) { 85 | this._road.push(BlockType.BT_STONE); 86 | } else { 87 | this._road.push(Math.floor(Math.random() * 2)); 88 | } 89 | } 90 | 91 | let linkedBlocks = 0; 92 | for (let j = 0; j < this._road.length; j++) { 93 | if(this._road[j]) { 94 | ++linkedBlocks; 95 | } 96 | if(this._road[j] == 0) { 97 | if(linkedBlocks > 0) { 98 | this.spawnBlockByCount(j - 1, linkedBlocks); 99 | linkedBlocks = 0; 100 | } 101 | } 102 | if(this._road.length == j + 1) { 103 | if(linkedBlocks > 0) { 104 | this.spawnBlockByCount(j, linkedBlocks); 105 | linkedBlocks = 0; 106 | } 107 | } 108 | } 109 | } 110 | 111 | spawnBlockByCount(lastPos: number, count: number) { 112 | let block: Node|null = this.spawnBlockByType(BlockType.BT_STONE); 113 | if(block) { 114 | this.node.addChild(block); 115 | block?.setScale(count, 1, 1); 116 | block?.setPosition(lastPos - (count - 1) * 0.5, -1.5, 0); 117 | } 118 | } 119 | 120 | spawnBlockByType(type: BlockType) { 121 | if (!this.cubePrfb) { 122 | return null; 123 | } 124 | 125 | let block: Node|null = null; 126 | switch(type) { 127 | case BlockType.BT_STONE: 128 | block = instantiate(this.cubePrfb); 129 | break; 130 | } 131 | 132 | return block; 133 | } 134 | 135 | onStartButtonClicked() { 136 | this.curState = GameState.GS_PLAYING; 137 | } 138 | 139 | checkResult(moveIndex: number) { 140 | if (moveIndex < this.roadLength) { 141 | if (this._road[moveIndex] == BlockType.BT_NONE) { //跳到了空方块上 142 | this.curState = GameState.GS_INIT; 143 | } 144 | } else { // 跳过了最大长度 145 | this.curState = GameState.GS_INIT; 146 | } 147 | } 148 | 149 | onPlayerJumpEnd(moveIndex: number) { 150 | if (this.stepsLabel) { 151 | this.stepsLabel.string = '' + (moveIndex >= this.roadLength ? this.roadLength : moveIndex); 152 | } 153 | this.checkResult(moveIndex); 154 | } 155 | 156 | // update (deltaTime: number) { 157 | // // Your update function goes here. 158 | // } 159 | } 160 | -------------------------------------------------------------------------------- /assets/Scipts/GameManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.21", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "326d60ed-0e36-4fc4-9e12-c13315b9801e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "importAsPlugin": false, 10 | "moduleId": "project:///assets/Scipts/GameManager.js", 11 | "importerSettings": 7 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/Scipts/PlayerController.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, Component, Vec3, input, Input, EventMouse, SkeletalAnimation } from "cc"; 2 | const { ccclass, property } = _decorator; 3 | 4 | @ccclass("PlayerController") 5 | export class PlayerController extends Component { 6 | 7 | // @property({type: Animation}) 8 | // public BodyAnim: Animation|null = null; 9 | @property({type: SkeletalAnimation}) 10 | public CocosAnim: SkeletalAnimation|null = null; 11 | 12 | // for fake tween 13 | private _startJump: boolean = false; 14 | private _jumpStep: number = 0; 15 | private _curJumpTime: number = 0; 16 | private _jumpTime: number = 0.3; 17 | private _curJumpSpeed: number = 0; 18 | private _curPos: Vec3 = new Vec3(); 19 | private _deltaPos: Vec3 = new Vec3(0, 0, 0); 20 | private _targetPos: Vec3 = new Vec3(); 21 | private _curMoveIndex = 0; 22 | 23 | start () { 24 | } 25 | 26 | reset() { 27 | this._curMoveIndex = 0; 28 | } 29 | 30 | setInputActive(active: boolean) { 31 | if (active) { 32 | input.on(Input.EventType.MOUSE_UP, this.onMouseUp, this); 33 | } else { 34 | input.off(Input.EventType.MOUSE_UP, this.onMouseUp, this); 35 | } 36 | } 37 | 38 | onMouseUp(event: EventMouse) { 39 | if (event.getButton() === 0) { 40 | this.jumpByStep(1); 41 | } else if (event.getButton() === 2) { 42 | this.jumpByStep(2); 43 | } 44 | 45 | } 46 | 47 | jumpByStep(step: number) { 48 | if (this._startJump) { 49 | return; 50 | } 51 | this._startJump = true; 52 | this._jumpStep = step; 53 | this._curJumpTime = 0; 54 | this._curJumpSpeed = this._jumpStep / this._jumpTime; 55 | this.node.getPosition(this._curPos); 56 | Vec3.add(this._targetPos, this._curPos, new Vec3(this._jumpStep, 0, 0)); 57 | 58 | if (this.CocosAnim) { 59 | this.CocosAnim.getState('cocos_anim_jump').speed = 3.5; //跳跃动画时间比较长,这里加速播放 60 | this.CocosAnim.play('cocos_anim_jump'); //播放跳跃动画 61 | } 62 | 63 | // if (this.BodyAnim) { 64 | // if (step === 1) { 65 | // //this.BodyAnim.play('oneStep'); 66 | // } else if (step === 2) { 67 | // this.BodyAnim.play('twoStep'); 68 | // } 69 | // } 70 | 71 | this._curMoveIndex += step; 72 | } 73 | 74 | onOnceJumpEnd() { 75 | if (this.CocosAnim) { 76 | this.CocosAnim.play('cocos_anim_idle'); 77 | } 78 | 79 | this.node.emit('JumpEnd', this._curMoveIndex); 80 | } 81 | 82 | update (deltaTime: number) { 83 | if (this._startJump) { 84 | this._curJumpTime += deltaTime; 85 | if (this._curJumpTime > this._jumpTime) { 86 | // end 87 | this.node.setPosition(this._targetPos); 88 | this._startJump = false; 89 | this.onOnceJumpEnd(); 90 | } else { 91 | // tween 92 | this.node.getPosition(this._curPos); 93 | this._deltaPos.x = this._curJumpSpeed * deltaTime; 94 | Vec3.add(this._curPos, this._curPos, this._deltaPos); 95 | this.node.setPosition(this._curPos); 96 | } 97 | } 98 | } 99 | } -------------------------------------------------------------------------------- /assets/Scipts/PlayerController.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.21", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ddfb1b64-cb1f-4112-ac8c-ef199f1390db", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "importAsPlugin": false, 10 | "moduleId": "project:///assets/Scipts/PlayerController.js", 11 | "importerSettings": 7 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/cocos.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d8da52c6-0127-41a6-9611-3c7718363db2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/Cocos.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "6cd4e8c1-b63f-4bbb-b3db-b323fa08b435", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Cocos" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/cocos/animations.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "75b08e51-53d1-4bca-b3de-ad7713d25d2c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_attack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_attack.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_attack.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "73443895-6d8f-41b5-8e3f-4110d0f4dc31", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_attack.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "a873a742-b503-4a96-8570-6fe542697035", 6 | "files": [], 7 | "subMetas": { 8 | "57e42": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_attack.animation", 12 | "id": "57e42", 13 | "displayName": "", 14 | "uuid": "a873a742-b503-4a96-8570-6fe542697035@57e42", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "events": [], 23 | "gltfIndex": 0, 24 | "sample": 30, 25 | "span": { 26 | "from": 0, 27 | "to": 1.3333333730697632 28 | }, 29 | "wrapMode": 2, 30 | "speed": 1 31 | } 32 | }, 33 | "325cb": { 34 | "ver": "1.0.12", 35 | "importer": "gltf-scene", 36 | "name": "cocos_anim_attack.prefab", 37 | "id": "325cb", 38 | "displayName": "", 39 | "uuid": "a873a742-b503-4a96-8570-6fe542697035@325cb", 40 | "imported": true, 41 | "files": [ 42 | ".json" 43 | ], 44 | "subMetas": {}, 45 | "userData": { 46 | "gltfIndex": 0 47 | } 48 | } 49 | }, 50 | "userData": { 51 | "normals": 2, 52 | "tangents": 2, 53 | "dumpMaterials": false, 54 | "animationImportSettings": [ 55 | { 56 | "name": "cocos_anim_attack", 57 | "duration": 1.3333333730697632, 58 | "fps": 30, 59 | "splits": [ 60 | { 61 | "name": "cocos_anim_attack", 62 | "from": 0, 63 | "to": 1.3333333730697632, 64 | "wrapMode": 2 65 | } 66 | ] 67 | } 68 | ], 69 | "redirect": "a873a742-b503-4a96-8570-6fe542697035@325cb", 70 | "assetFinder": { 71 | "scenes": [ 72 | "a873a742-b503-4a96-8570-6fe542697035@325cb" 73 | ], 74 | "meshes": [], 75 | "skeletons": [], 76 | "textures": [], 77 | "materials": [] 78 | }, 79 | "imageMetas": [] 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_die.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_die.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_die.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "d1a7cd09-b5d9-422f-a4f3-112d85f1059c", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_die.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "caf172df-03b7-4c5a-8a53-93f3e4be5146", 6 | "files": [], 7 | "subMetas": { 8 | "5ecd9": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_die.animation", 12 | "id": "5ecd9", 13 | "displayName": "", 14 | "uuid": "caf172df-03b7-4c5a-8a53-93f3e4be5146@5ecd9", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0, 23 | "sample": 30, 24 | "span": { 25 | "from": 0, 26 | "to": 1.6666667461395264 27 | }, 28 | "events": [], 29 | "wrapMode": 2 30 | } 31 | }, 32 | "578b6": { 33 | "ver": "1.0.12", 34 | "importer": "gltf-scene", 35 | "name": "cocos_anim_die.prefab", 36 | "id": "578b6", 37 | "displayName": "", 38 | "uuid": "caf172df-03b7-4c5a-8a53-93f3e4be5146@578b6", 39 | "imported": true, 40 | "files": [ 41 | ".json" 42 | ], 43 | "subMetas": {}, 44 | "userData": { 45 | "gltfIndex": 0 46 | } 47 | } 48 | }, 49 | "userData": { 50 | "normals": 2, 51 | "tangents": 2, 52 | "dumpMaterials": false, 53 | "animationImportSettings": [ 54 | { 55 | "name": "cocos_anim_die", 56 | "duration": 1.6666667461395264, 57 | "fps": 30, 58 | "splits": [ 59 | { 60 | "name": "cocos_anim_die", 61 | "from": 0, 62 | "to": 1.6666667461395264, 63 | "wrapMode": 2 64 | } 65 | ] 66 | } 67 | ], 68 | "redirect": "caf172df-03b7-4c5a-8a53-93f3e4be5146@578b6", 69 | "assetFinder": { 70 | "scenes": [ 71 | "caf172df-03b7-4c5a-8a53-93f3e4be5146@578b6" 72 | ], 73 | "meshes": [], 74 | "skeletons": [], 75 | "textures": [], 76 | "materials": [] 77 | }, 78 | "imageMetas": [] 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_down.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_down.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_down.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "fe407fd3-1b9c-4fb7-9a97-edb4cdae6314", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_down.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "27ac412c-9efa-4ead-8e2c-fe6533c7878f", 6 | "files": [], 7 | "subMetas": { 8 | "96245": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_down.animation", 12 | "id": "96245", 13 | "displayName": "", 14 | "uuid": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@96245", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "events": [], 23 | "gltfIndex": 0, 24 | "sample": 30, 25 | "span": { 26 | "from": 0, 27 | "to": 2.633333444595337 28 | }, 29 | "wrapMode": 2, 30 | "speed": 1 31 | } 32 | }, 33 | "bce50": { 34 | "ver": "1.0.12", 35 | "importer": "gltf-scene", 36 | "name": "cocos_anim_down.prefab", 37 | "id": "bce50", 38 | "displayName": "", 39 | "uuid": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@bce50", 40 | "imported": true, 41 | "files": [ 42 | ".json" 43 | ], 44 | "subMetas": {}, 45 | "userData": { 46 | "gltfIndex": 0 47 | } 48 | } 49 | }, 50 | "userData": { 51 | "normals": 2, 52 | "tangents": 2, 53 | "dumpMaterials": false, 54 | "animationImportSettings": [ 55 | { 56 | "name": "cocos_anim_down", 57 | "duration": 2.633333444595337, 58 | "fps": 30, 59 | "splits": [ 60 | { 61 | "name": "cocos_anim_down", 62 | "from": 0, 63 | "to": 2.633333444595337, 64 | "wrapMode": 2 65 | } 66 | ] 67 | } 68 | ], 69 | "redirect": "27ac412c-9efa-4ead-8e2c-fe6533c7878f@bce50", 70 | "assetFinder": { 71 | "scenes": [ 72 | "27ac412c-9efa-4ead-8e2c-fe6533c7878f@bce50" 73 | ], 74 | "meshes": [], 75 | "skeletons": [], 76 | "textures": [], 77 | "materials": [] 78 | }, 79 | "imageMetas": [] 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_hurt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_hurt.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_hurt.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "a1efb6ff-ef74-4037-8801-d310eca22fd5", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_hurt.gltf: -------------------------------------------------------------------------------- 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}]}]} -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_hurt.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1", 6 | "files": [], 7 | "subMetas": { 8 | "51885": { 9 | "ver": "1.0.12", 10 | "importer": "gltf-scene", 11 | "name": "cocos_anim_hurt.prefab", 12 | "id": "51885", 13 | "displayName": "", 14 | "uuid": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@51885", 15 | "imported": true, 16 | "files": [ 17 | ".json" 18 | ], 19 | "subMetas": {}, 20 | "userData": { 21 | "gltfIndex": 0 22 | } 23 | }, 24 | "4cafd": { 25 | "ver": "1.0.14", 26 | "importer": "gltf-animation", 27 | "name": "cocos_anim_hurt.animation", 28 | "id": "4cafd", 29 | "displayName": "", 30 | "uuid": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@4cafd", 31 | "imported": true, 32 | "files": [ 33 | ".bin", 34 | ".json" 35 | ], 36 | "subMetas": {}, 37 | "userData": { 38 | "gltfIndex": 0, 39 | "sample": 30, 40 | "span": { 41 | "from": 0, 42 | "to": 0.5 43 | }, 44 | "events": [], 45 | "wrapMode": 2 46 | } 47 | } 48 | }, 49 | "userData": { 50 | "normals": 2, 51 | "tangents": 2, 52 | "dumpMaterials": false, 53 | "animationImportSettings": [ 54 | { 55 | "name": "cocos_anim_hurt", 56 | "duration": 0.5, 57 | "fps": 30, 58 | "splits": [ 59 | { 60 | "name": "cocos_anim_hurt", 61 | "from": 0, 62 | "to": 0.5, 63 | "wrapMode": 2 64 | } 65 | ] 66 | } 67 | ], 68 | "redirect": "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@51885", 69 | "assetFinder": { 70 | "scenes": [ 71 | "cb2cc463-6e7a-4d17-9247-bea8f3cf7bb1@51885" 72 | ], 73 | "meshes": [], 74 | "skeletons": [], 75 | "textures": [], 76 | "materials": [] 77 | }, 78 | "imageMetas": [] 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_idle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_idle.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_idle.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "e9d41da7-da95-4119-8a6c-0937de2adb57", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_idle.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "445d5d9d-c56b-4528-bc90-c847357e5d94", 6 | "files": [], 7 | "subMetas": { 8 | "ab65f": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_idle.animation", 12 | "id": "ab65f", 13 | "displayName": "", 14 | "uuid": "445d5d9d-c56b-4528-bc90-c847357e5d94@ab65f", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "events": [], 23 | "gltfIndex": 0, 24 | "sample": 30, 25 | "span": { 26 | "from": 0, 27 | "to": 3.000000238418579 28 | }, 29 | "speed": 1, 30 | "wrapMode": 2 31 | } 32 | }, 33 | "0ea50": { 34 | "ver": "1.0.12", 35 | "importer": "gltf-scene", 36 | "name": "cocos_anim_idle.prefab", 37 | "id": "0ea50", 38 | "displayName": "", 39 | "uuid": "445d5d9d-c56b-4528-bc90-c847357e5d94@0ea50", 40 | "imported": true, 41 | "files": [ 42 | ".json" 43 | ], 44 | "subMetas": {}, 45 | "userData": { 46 | "gltfIndex": 0 47 | } 48 | } 49 | }, 50 | "userData": { 51 | "normals": 2, 52 | "tangents": 2, 53 | "dumpMaterials": false, 54 | "animationImportSettings": [ 55 | { 56 | "name": "cocos_anim_idle", 57 | "duration": 3.000000238418579, 58 | "fps": 30, 59 | "splits": [ 60 | { 61 | "name": "cocos_anim_idle", 62 | "from": 0, 63 | "to": 3.000000238418579, 64 | "wrapMode": 2 65 | } 66 | ] 67 | } 68 | ], 69 | "redirect": "445d5d9d-c56b-4528-bc90-c847357e5d94@0ea50", 70 | "assetFinder": { 71 | "scenes": [ 72 | "445d5d9d-c56b-4528-bc90-c847357e5d94@0ea50" 73 | ], 74 | "meshes": [], 75 | "skeletons": [], 76 | "textures": [], 77 | "materials": [] 78 | }, 79 | "imageMetas": [] 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_jump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_jump.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_jump.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "33a7dcc9-4eed-4d49-baac-d190c3d2a157", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_jump.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "501da3c5-f2d8-45f7-bc04-5130d58811ff", 6 | "files": [], 7 | "subMetas": { 8 | "cd579": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_jump.animation", 12 | "id": "cd579", 13 | "displayName": "", 14 | "uuid": "501da3c5-f2d8-45f7-bc04-5130d58811ff@cd579", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "events": [], 23 | "gltfIndex": 0, 24 | "sample": 30, 25 | "span": { 26 | "from": 0, 27 | "to": 1.6666667461395264 28 | }, 29 | "speed": 1, 30 | "wrapMode": 2 31 | } 32 | }, 33 | "645e0": { 34 | "ver": "1.0.12", 35 | "importer": "gltf-scene", 36 | "name": "cocos_anim_jump.prefab", 37 | "id": "645e0", 38 | "displayName": "", 39 | "uuid": "501da3c5-f2d8-45f7-bc04-5130d58811ff@645e0", 40 | "imported": true, 41 | "files": [ 42 | ".json" 43 | ], 44 | "subMetas": {}, 45 | "userData": { 46 | "gltfIndex": 0 47 | } 48 | } 49 | }, 50 | "userData": { 51 | "normals": 2, 52 | "tangents": 2, 53 | "dumpMaterials": false, 54 | "animationImportSettings": [ 55 | { 56 | "name": "cocos_anim_jump", 57 | "duration": 1.6666667461395264, 58 | "fps": 30, 59 | "splits": [ 60 | { 61 | "name": "cocos_anim_jump", 62 | "from": 0, 63 | "to": 1.6666667461395264, 64 | "wrapMode": 2 65 | } 66 | ] 67 | } 68 | ], 69 | "redirect": "501da3c5-f2d8-45f7-bc04-5130d58811ff@645e0", 70 | "assetFinder": { 71 | "scenes": [ 72 | "501da3c5-f2d8-45f7-bc04-5130d58811ff@645e0" 73 | ], 74 | "meshes": [], 75 | "skeletons": [], 76 | "textures": [], 77 | "materials": [] 78 | }, 79 | "imageMetas": [] 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_run.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_run.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_run.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "f1d8a0c8-d2d8-473f-a769-803842978f68", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_run.gltf: -------------------------------------------------------------------------------- 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}]}]} -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_run.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "50735e20-7211-4e9c-b676-4d648cdc0cbb", 6 | "files": [], 7 | "subMetas": { 8 | "b6423": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_run.animation", 12 | "id": "b6423", 13 | "displayName": "", 14 | "uuid": "50735e20-7211-4e9c-b676-4d648cdc0cbb@b6423", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0, 23 | "sample": 30, 24 | "span": { 25 | "from": 0, 26 | "to": 0.8000000715255737 27 | }, 28 | "events": [], 29 | "wrapMode": 2 30 | } 31 | }, 32 | "6ebd2": { 33 | "ver": "1.0.12", 34 | "importer": "gltf-scene", 35 | "name": "cocos_anim_run.prefab", 36 | "id": "6ebd2", 37 | "displayName": "", 38 | "uuid": "50735e20-7211-4e9c-b676-4d648cdc0cbb@6ebd2", 39 | "imported": true, 40 | "files": [ 41 | ".json" 42 | ], 43 | "subMetas": {}, 44 | "userData": { 45 | "gltfIndex": 0 46 | } 47 | } 48 | }, 49 | "userData": { 50 | "normals": 2, 51 | "tangents": 2, 52 | "dumpMaterials": false, 53 | "animationImportSettings": [ 54 | { 55 | "name": "cocos_anim_run", 56 | "duration": 0.8000000715255737, 57 | "fps": 30, 58 | "splits": [ 59 | { 60 | "name": "cocos_anim_run", 61 | "from": 0, 62 | "to": 0.8000000715255737, 63 | "wrapMode": 2 64 | } 65 | ] 66 | } 67 | ], 68 | "redirect": "50735e20-7211-4e9c-b676-4d648cdc0cbb@6ebd2", 69 | "assetFinder": { 70 | "scenes": [ 71 | "50735e20-7211-4e9c-b676-4d648cdc0cbb@6ebd2" 72 | ], 73 | "meshes": [], 74 | "skeletons": [], 75 | "textures": [], 76 | "materials": [] 77 | }, 78 | "imageMetas": [] 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_shoot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_shoot.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_shoot.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "a9e047be-e87a-43d9-bbd5-1b3f5dbe2026", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_shoot.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "1cf73293-3e10-49c1-bfa1-59daaadbd18b", 6 | "files": [], 7 | "subMetas": { 8 | "b452c": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_shoot.animation", 12 | "id": "b452c", 13 | "displayName": "", 14 | "uuid": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@b452c", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0, 23 | "sample": 30, 24 | "span": { 25 | "from": 0, 26 | "to": 1.3000000715255737 27 | }, 28 | "events": [], 29 | "wrapMode": 2 30 | } 31 | }, 32 | "7d7b5": { 33 | "ver": "1.0.12", 34 | "importer": "gltf-scene", 35 | "name": "cocos_anim_shoot.prefab", 36 | "id": "7d7b5", 37 | "displayName": "", 38 | "uuid": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@7d7b5", 39 | "imported": true, 40 | "files": [ 41 | ".json" 42 | ], 43 | "subMetas": {}, 44 | "userData": { 45 | "gltfIndex": 0 46 | } 47 | } 48 | }, 49 | "userData": { 50 | "normals": 2, 51 | "tangents": 2, 52 | "dumpMaterials": false, 53 | "animationImportSettings": [ 54 | { 55 | "name": "cocos_anim_shoot", 56 | "duration": 1.3000000715255737, 57 | "fps": 30, 58 | "splits": [ 59 | { 60 | "name": "cocos_anim_shoot", 61 | "from": 0, 62 | "to": 1.3000000715255737, 63 | "wrapMode": 2 64 | } 65 | ] 66 | } 67 | ], 68 | "redirect": "1cf73293-3e10-49c1-bfa1-59daaadbd18b@7d7b5", 69 | "assetFinder": { 70 | "scenes": [ 71 | "1cf73293-3e10-49c1-bfa1-59daaadbd18b@7d7b5" 72 | ], 73 | "meshes": [], 74 | "skeletons": [], 75 | "textures": [], 76 | "materials": [] 77 | }, 78 | "imageMetas": [] 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_squat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_squat.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_squat.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "7290f264-a898-4355-8041-8514dbd0051f", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_squat.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "58c9fdbf-de49-4141-83fa-9ad83f78591c", 6 | "files": [], 7 | "subMetas": { 8 | "b940a": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_squat.animation", 12 | "id": "b940a", 13 | "displayName": "", 14 | "uuid": "58c9fdbf-de49-4141-83fa-9ad83f78591c@b940a", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0, 23 | "sample": 30, 24 | "span": { 25 | "from": 0, 26 | "to": 1.8666667938232422 27 | }, 28 | "events": [], 29 | "wrapMode": 2 30 | } 31 | }, 32 | "6c8e7": { 33 | "ver": "1.0.12", 34 | "importer": "gltf-scene", 35 | "name": "cocos_anim_squat.prefab", 36 | "id": "6c8e7", 37 | "displayName": "", 38 | "uuid": "58c9fdbf-de49-4141-83fa-9ad83f78591c@6c8e7", 39 | "imported": true, 40 | "files": [ 41 | ".json" 42 | ], 43 | "subMetas": {}, 44 | "userData": { 45 | "gltfIndex": 0 46 | } 47 | } 48 | }, 49 | "userData": { 50 | "normals": 2, 51 | "tangents": 2, 52 | "dumpMaterials": false, 53 | "animationImportSettings": [ 54 | { 55 | "name": "cocos_anim_squat", 56 | "duration": 1.8666667938232422, 57 | "fps": 30, 58 | "splits": [ 59 | { 60 | "name": "cocos_anim_squat", 61 | "from": 0, 62 | "to": 1.8666667938232422, 63 | "wrapMode": 2 64 | } 65 | ] 66 | } 67 | ], 68 | "redirect": "58c9fdbf-de49-4141-83fa-9ad83f78591c@6c8e7", 69 | "assetFinder": { 70 | "scenes": [ 71 | "58c9fdbf-de49-4141-83fa-9ad83f78591c@6c8e7" 72 | ], 73 | "meshes": [], 74 | "skeletons": [], 75 | "textures": [], 76 | "materials": [] 77 | }, 78 | "imageMetas": [] 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_walk.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/animations/cocos_anim_walk.bin -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_walk.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "e08b2140-55f5-4d1f-af55-565183504a80", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_walk.gltf: -------------------------------------------------------------------------------- 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}]}]} -------------------------------------------------------------------------------- /assets/cocos/animations/cocos_anim_walk.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "b1cb32e6-c8c9-40c9-9d52-119dae416b32", 6 | "files": [], 7 | "subMetas": { 8 | "0a7b5": { 9 | "ver": "1.0.14", 10 | "importer": "gltf-animation", 11 | "name": "cocos_anim_walk.animation", 12 | "id": "0a7b5", 13 | "displayName": "", 14 | "uuid": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@0a7b5", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "events": [], 23 | "gltfIndex": 0, 24 | "sample": 30, 25 | "span": { 26 | "from": 0, 27 | "to": 1.0666667222976685 28 | }, 29 | "wrapMode": 2, 30 | "speed": 1 31 | } 32 | }, 33 | "6ac0b": { 34 | "ver": "1.0.12", 35 | "importer": "gltf-scene", 36 | "name": "cocos_anim_walk.prefab", 37 | "id": "6ac0b", 38 | "displayName": "", 39 | "uuid": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@6ac0b", 40 | "imported": true, 41 | "files": [ 42 | ".json" 43 | ], 44 | "subMetas": {}, 45 | "userData": { 46 | "gltfIndex": 0 47 | } 48 | } 49 | }, 50 | "userData": { 51 | "normals": 2, 52 | "tangents": 2, 53 | "dumpMaterials": false, 54 | "animationImportSettings": [ 55 | { 56 | "name": "cocos_anim_walk", 57 | "duration": 1.0666667222976685, 58 | "fps": 30, 59 | "splits": [ 60 | { 61 | "name": "cocos_anim_walk", 62 | "from": 0, 63 | "to": 1.0666667222976685, 64 | "wrapMode": 2 65 | } 66 | ] 67 | } 68 | ], 69 | "redirect": "b1cb32e6-c8c9-40c9-9d52-119dae416b32@6ac0b", 70 | "assetFinder": { 71 | "scenes": [ 72 | "b1cb32e6-c8c9-40c9-9d52-119dae416b32@6ac0b" 73 | ], 74 | "meshes": [], 75 | "skeletons": [], 76 | "textures": [], 77 | "materials": [] 78 | }, 79 | "imageMetas": [] 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /assets/cocos/body.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "1baf0fc9-befa-459c-8bdd-af1a450a0319" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_NORMAL_MAP": true, 13 | "USE_ALBEDO_MAP": true, 14 | "USE_EMISSIVE_MAP": true, 15 | "OCCLUSION_CHANNEL": "b", 16 | "ROUGHNESS_CHANNEL": "r", 17 | "METALLIC_CHANNEL": "g", 18 | "USE_SKINNING": true 19 | } 20 | ], 21 | "_states": [ 22 | { 23 | "blendState": { 24 | "targets": [ 25 | {} 26 | ] 27 | }, 28 | "depthStencilState": {}, 29 | "rasterizerState": {} 30 | } 31 | ], 32 | "_props": [ 33 | { 34 | "normalMap": { 35 | "__uuid__": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a@6c48a" 36 | }, 37 | "emissiveMap": { 38 | "__uuid__": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a" 39 | }, 40 | "occlusion": 1, 41 | "roughness": 0.8, 42 | "metallic": 0.6, 43 | "mainTexture": { 44 | "__uuid__": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a" 45 | } 46 | } 47 | ] 48 | } 49 | -------------------------------------------------------------------------------- /assets/cocos/body.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "58cf3db3-e6f4-4943-a076-26157912429c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/cocos/cocos_mesh.gltf: -------------------------------------------------------------------------------- 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}]} -------------------------------------------------------------------------------- /assets/cocos/cocos_mesh.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698", 6 | "files": [], 7 | "subMetas": { 8 | "a865e": { 9 | "ver": "1.1.0", 10 | "importer": "gltf-mesh", 11 | "name": "cocosfinish_01.mesh", 12 | "id": "a865e", 13 | "displayName": "", 14 | "uuid": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@a865e", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0 23 | } 24 | }, 25 | "e69d3": { 26 | "ver": "1.0.12", 27 | "importer": "gltf-scene", 28 | "name": "cocos_mesh.prefab", 29 | "id": "e69d3", 30 | "displayName": "", 31 | "uuid": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@e69d3", 32 | "imported": true, 33 | "files": [ 34 | ".json" 35 | ], 36 | "subMetas": {}, 37 | "userData": { 38 | "gltfIndex": 0 39 | } 40 | } 41 | }, 42 | "userData": { 43 | "normals": 2, 44 | "tangents": 2, 45 | "dumpMaterials": false, 46 | "redirect": "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@e69d3", 47 | "assetFinder": { 48 | "meshes": [ 49 | "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@a865e" 50 | ], 51 | "scenes": [ 52 | "5bee9f0c-9771-4e73-b0ea-0bbb6da67698@e69d3" 53 | ], 54 | "skeletons": [], 55 | "textures": [], 56 | "materials": [] 57 | }, 58 | "imageMetas": [] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /assets/cocos/cocos_mesh_helmet.gltf: -------------------------------------------------------------------------------- 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}]} -------------------------------------------------------------------------------- /assets/cocos/cocos_mesh_helmet.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "fb9825a0-fd7f-48c5-b121-9af90f9f2011", 6 | "files": [], 7 | "subMetas": { 8 | "72704": { 9 | "ver": "1.1.0", 10 | "importer": "gltf-mesh", 11 | "name": "cocosfinish_02.mesh", 12 | "id": "72704", 13 | "displayName": "", 14 | "uuid": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@72704", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0 23 | } 24 | }, 25 | "28c31": { 26 | "ver": "1.0.12", 27 | "importer": "gltf-scene", 28 | "name": "cocos_mesh_helmet.prefab", 29 | "id": "28c31", 30 | "displayName": "", 31 | "uuid": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@28c31", 32 | "imported": true, 33 | "files": [ 34 | ".json" 35 | ], 36 | "subMetas": {}, 37 | "userData": { 38 | "gltfIndex": 0 39 | } 40 | } 41 | }, 42 | "userData": { 43 | "normals": 2, 44 | "tangents": 2, 45 | "dumpMaterials": false, 46 | "redirect": "fb9825a0-fd7f-48c5-b121-9af90f9f2011@28c31", 47 | "assetFinder": { 48 | "meshes": [ 49 | "fb9825a0-fd7f-48c5-b121-9af90f9f2011@72704" 50 | ], 51 | "scenes": [ 52 | "fb9825a0-fd7f-48c5-b121-9af90f9f2011@28c31" 53 | ], 54 | "skeletons": [], 55 | "textures": [], 56 | "materials": [] 57 | }, 58 | "imageMetas": [] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /assets/cocos/cocos_skel.gltf: -------------------------------------------------------------------------------- 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]}]} -------------------------------------------------------------------------------- /assets/cocos/cocos_skel.gltf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.10", 3 | "importer": "gltf", 4 | "imported": true, 5 | "uuid": "90f86573-5baf-41e2-97db-8604d1f42b65", 6 | "files": [], 7 | "subMetas": { 8 | "a9630": { 9 | "ver": "1.0.1", 10 | "importer": "gltf-skeleton", 11 | "name": "cocos_skel.skeleton", 12 | "id": "a9630", 13 | "displayName": "", 14 | "uuid": "90f86573-5baf-41e2-97db-8604d1f42b65@a9630", 15 | "imported": true, 16 | "files": [ 17 | ".json" 18 | ], 19 | "subMetas": {}, 20 | "userData": { 21 | "gltfIndex": 0, 22 | "jointsLength": 52 23 | } 24 | }, 25 | "41e97": { 26 | "ver": "1.0.12", 27 | "importer": "gltf-scene", 28 | "name": "cocos_skel.prefab", 29 | "id": "41e97", 30 | "displayName": "", 31 | "uuid": "90f86573-5baf-41e2-97db-8604d1f42b65@41e97", 32 | "imported": true, 33 | "files": [ 34 | ".json" 35 | ], 36 | "subMetas": {}, 37 | "userData": { 38 | "gltfIndex": 0 39 | } 40 | } 41 | }, 42 | "userData": { 43 | "normals": 2, 44 | "tangents": 2, 45 | "dumpMaterials": false, 46 | "redirect": "90f86573-5baf-41e2-97db-8604d1f42b65@41e97", 47 | "assetFinder": { 48 | "skeletons": [ 49 | "90f86573-5baf-41e2-97db-8604d1f42b65@a9630" 50 | ], 51 | "scenes": [ 52 | "90f86573-5baf-41e2-97db-8604d1f42b65@41e97" 53 | ], 54 | "meshes": [], 55 | "textures": [], 56 | "materials": [] 57 | }, 58 | "imageMetas": [] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /assets/cocos/cocos_skel_ibm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocos_skel_ibm.bin -------------------------------------------------------------------------------- /assets/cocos/cocos_skel_ibm.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "8d2d3098-6841-41fc-af7f-4bac9e32b080", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/cocos_squat_anim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocos_squat_anim.bin -------------------------------------------------------------------------------- /assets/cocos/cocos_squat_anim.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "b9ab6374-4e67-4db2-bb75-0256c62f6c7b", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_01.bin -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "b3df5b21-2fe6-410e-a10d-3df317e61bb5", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_01_baseColor.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_baseColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_01_baseColor", 17 | "uuid": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "5f4dd798-2ae6-4bbf-84b4-504bb6cceaed@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_01_emissive.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_emissive.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "026c4a15-e07d-4053-86de-9f9fe30188e5", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_01_emissive", 17 | "uuid": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "026c4a15-e07d-4053-86de-9f9fe30188e5" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "026c4a15-e07d-4053-86de-9f9fe30188e5@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_01_normal.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_normal.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_01_normal", 17 | "uuid": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "3af9be2f-93d2-41a0-b7b7-3cc03054b34a@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_occlusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_01_occlusionRoughnessMetallic.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_01_occlusionRoughnessMetallic.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_01_occlusionRoughnessMetallic", 17 | "uuid": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "64b1edbd-75c7-4159-a65a-f1e6d8c9812a@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_02.bin -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "dcab7d1f-201e-45d8-911c-833cc5427723", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_02_baseColor.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02_baseColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "8949c1f1-9b2b-418c-b150-611a94543416", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_02_baseColor", 17 | "uuid": "8949c1f1-9b2b-418c-b150-611a94543416@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "8949c1f1-9b2b-418c-b150-611a94543416" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "8949c1f1-9b2b-418c-b150-611a94543416@6c48a", 39 | "hasAlpha": true 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_02_normal.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02_normal.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "19819162-ce3f-4f7c-8889-8b2f35bf274c", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_02_normal", 17 | "uuid": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "19819162-ce3f-4f7c-8889-8b2f35bf274c" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02_occlusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-tutorial-mind-your-step/2213c0dbf9c11b4ba1458caaa25f633ff9357659/assets/cocos/cocosfinish_02_occlusionRoughnessMetallic.png -------------------------------------------------------------------------------- /assets/cocos/cocosfinish_02_occlusionRoughnessMetallic.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "cd618de5-59fc-4899-ba4f-55195f3e24ce", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "ver": "1.0.20", 13 | "importer": "texture", 14 | "name": "texture", 15 | "id": "6c48a", 16 | "displayName": "cocosfinish_02_occlusionRoughnessMetallic", 17 | "uuid": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 1, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "cd618de5-59fc-4899-ba4f-55195f3e24ce" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/cocos/helmet.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "1baf0fc9-befa-459c-8bdd-af1a450a0319" 8 | }, 9 | "_techIdx": "1", 10 | "_defines": [ 11 | { 12 | "USE_NORMAL_MAP": true, 13 | "USE_ALBEDO_MAP": true, 14 | "USE_METALLIC_ROUGHNESS_MAP": true, 15 | "ROUGHNESS_CHANNEL": "g", 16 | "METALLIC_CHANNEL": "b", 17 | "OCCLUSION_CHANNEL": "g", 18 | "USE_SKINNING": true 19 | } 20 | ], 21 | "_states": [ 22 | { 23 | "blendState": { 24 | "targets": [ 25 | {} 26 | ] 27 | }, 28 | "depthStencilState": {}, 29 | "rasterizerState": {} 30 | } 31 | ], 32 | "_props": [ 33 | { 34 | "emissive": { 35 | "__type__": "cc.Color", 36 | "r": 0, 37 | "g": 0, 38 | "b": 0, 39 | "a": 0 40 | }, 41 | "normalMap": { 42 | "__uuid__": "19819162-ce3f-4f7c-8889-8b2f35bf274c@6c48a" 43 | }, 44 | "pbrMap": { 45 | "__uuid__": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a" 46 | }, 47 | "metallicRoughnessMap": { 48 | "__uuid__": "cd618de5-59fc-4899-ba4f-55195f3e24ce@6c48a" 49 | }, 50 | "occlusion": 1, 51 | "roughness": 1, 52 | "metallic": 1, 53 | "mainTexture": { 54 | "__uuid__": "8949c1f1-9b2b-418c-b150-611a94543416@6c48a" 55 | } 56 | } 57 | ] 58 | } 59 | -------------------------------------------------------------------------------- /assets/cocos/helmet.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7e81a899-6c7c-493d-80cf-e4f730e4f48f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MindYourStep_Tutorial", 3 | "type": "3d", 4 | "version": "3.0.0", 5 | "uuid": "2e8e8372-fc67-4c65-a4f6-bcf56a0cdab0" 6 | } 7 | -------------------------------------------------------------------------------- /profiles/packages/assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "state": { 3 | "expandUuids": [ 4 | "db://assets", 5 | "537d3fb8-d822-4a66-8277-c8634e652b43", 6 | "d8da52c6-0127-41a6-9611-3c7718363db2", 7 | "fb3c51e5-0f53-479f-9612-638350748401" 8 | ], 9 | "sortType": "name" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /profiles/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildTask": { 3 | "web-desktop": { 4 | "options": { 5 | "buildPath": "./build", 6 | "debug": false, 7 | "embedWebDebugger": false, 8 | "forceCombileEngine": true, 9 | "md5Cache": false, 10 | "name": "tutorial-mind-your-step-3d", 11 | "platform": "web-desktop", 12 | "resolution": { 13 | "height": 640, 14 | "width": 960 15 | }, 16 | "scenes": [ 17 | { 18 | "url": "db://assets/Scenes/Main.scene", 19 | "uuid": "6962d389-b02c-41bc-937c-43c2f47d6fbc" 20 | } 21 | ], 22 | "sourceMaps": false, 23 | "startScene": "6962d389-b02c-41bc-937c-43c2f47d6fbc", 24 | "taskName": "web-desktop" 25 | }, 26 | "rate": 100, 27 | "state": "success", 28 | "subTask": { 29 | "engine": "success", 30 | "settings": "success", 31 | "template": "success" 32 | } 33 | } 34 | }, 35 | "platformQueue": { 36 | "web-desktop": [], 37 | "web-mobile": [] 38 | }, 39 | "BuildTaskManager": { 40 | "queue": [ 41 | { 42 | "id": "web-desktop_001", 43 | "state": "success", 44 | "progress": 1, 45 | "options": { 46 | "buildPath": "./build", 47 | "compressTexture": true, 48 | "debug": false, 49 | "designResolution": { 50 | "width": "1080", 51 | "height": 640, 52 | "fitWidth": true, 53 | "fitHeight": false 54 | }, 55 | "forceCombileEngine": true, 56 | "includeModules": [ 57 | "base", 58 | "gfx-webgl", 59 | "gfx-webgl2", 60 | "ui", 61 | "particle", 62 | "physics-cannon", 63 | "physics-framework", 64 | "audio", 65 | "tween", 66 | "terrain" 67 | ], 68 | "inlineSpriteFrames": false, 69 | "md5Cache": false, 70 | "mergeStartScene": false, 71 | "name": "tutorial-mind-your-step", 72 | "packAutoAtlas": true, 73 | "platform": "web-desktop", 74 | "resolution": { 75 | "height": 640, 76 | "width": 960 77 | }, 78 | "scenes": [ 79 | { 80 | "url": "db://assets/Scenes/Main.scene", 81 | "uuid": "6962d389-b02c-41bc-937c-43c2f47d6fbc" 82 | } 83 | ], 84 | "sourceMaps": false, 85 | "startScene": "6962d389-b02c-41bc-937c-43c2f47d6fbc", 86 | "taskName": "web-desktop_001", 87 | "packages": { 88 | "web-desktop": { 89 | "designHeight": 640, 90 | "designWidth": 1080 91 | } 92 | } 93 | }, 94 | "message": "build sucess in 60542 ms!" 95 | } 96 | ] 97 | }, 98 | "common": { 99 | "name": "tutorial-mind-your-step", 100 | "designWidth": 1080, 101 | "designHeight": 640 102 | }, 103 | "web-desktop": { 104 | "web-desktop": { 105 | "designWidth": 1080, 106 | "designHeight": 640 107 | } 108 | }, 109 | "version": { 110 | "alipay-mini-game": "1.0.4.1", 111 | "baidu-mini-game": "1.0.4.1", 112 | "cocos-play": "1.0.4.1", 113 | "huawei-mini-game": "1.0.4.1", 114 | "native": "1.0.4.1", 115 | "oppo-mini-game": "1.0.4.1", 116 | "vivo-mini-game": "1.0.4.1", 117 | "web-desktop": "1.0.4.1", 118 | "web-mobile": "1.0.4.1", 119 | "wechatgame": "1.0.4.1", 120 | "xiaomi-quick-game": "1.0.4.1" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /profiles/packages/hierarchy.json: -------------------------------------------------------------------------------- 1 | { 2 | "state": { 3 | "animationUuid": "", 4 | "assetUuid": "6962d389-b02c-41bc-937c-43c2f47d6fbc", 5 | "expandLevels": [ 6 | "0", 7 | "0_1", 8 | "0_1_0", 9 | "0_1_0_0", 10 | "0_1_0_0_2", 11 | "0_1_0_0_2_0" 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /profiles/packages/project-setting.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /profiles/packages/scene.json: -------------------------------------------------------------------------------- 1 | { 2 | "current-scene": "6962d389-b02c-41bc-937c-43c2f47d6fbc", 3 | "camera-infos": { 4 | "6962d389-b02c-41bc-937c-43c2f47d6fbc": { 5 | "position": { 6 | "x": 0.3986308743479153, 7 | "y": 4.29569458294542, 8 | "z": 18.52378337272743 9 | }, 10 | "rotation": { 11 | "w": 0.9902701809118301, 12 | "x": -0.13874160134063693, 13 | "y": 0.010654048566682752, 14 | "z": 0.0014926832973415505 15 | }, 16 | "viewCenter": { 17 | "x": 0, 18 | "y": -1, 19 | "z": 0 20 | } 21 | } 22 | }, 23 | "camera-uuids": [ 24 | "6962d389-b02c-41bc-937c-43c2f47d6fbc" 25 | ], 26 | "gizmos-infos": { 27 | "iconGizmoSize": 2, 28 | "isGridVisible": true, 29 | "isIconGizmo3D": false 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /profiles/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.6", 3 | "version": { 4 | "builder": "1.2.3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /profiles/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /profiles/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.5" 3 | } 4 | -------------------------------------------------------------------------------- /profiles/v2/packages/scene.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "current-scene": "6962d389-b02c-41bc-937c-43c2f47d6fbc", 4 | "gizmos-infos": { 5 | "is2D": false, 6 | "is3DIcon": false, 7 | "iconSize": 2, 8 | "gridVisible": true, 9 | "gridColor": [ 10 | 150, 11 | 150, 12 | 150, 13 | 255 14 | ], 15 | "iconGizmoSize": 2, 16 | "isGridVisible": true, 17 | "isIconGizmo3D": false 18 | }, 19 | "float-window": { 20 | "position": { 21 | "cc": { 22 | "Camera": { 23 | "dock": false, 24 | "top": null, 25 | "bottom": 10, 26 | "left": null, 27 | "right": 10 28 | } 29 | } 30 | } 31 | }, 32 | "camera-infos": { 33 | "f46876e4-e81b-4931-b493-6d367be385e7": { 34 | "position": { 35 | "x": 50, 36 | "y": 50, 37 | "z": 50 38 | }, 39 | "rotation": { 40 | "w": 0.8804762392171493, 41 | "x": -0.27984814233312133, 42 | "y": 0.3647051996310009, 43 | "z": 0.11591689595929514 44 | }, 45 | "viewCenter": { 46 | "x": 0, 47 | "y": 0, 48 | "z": 0 49 | } 50 | }, 51 | "6962d389-b02c-41bc-937c-43c2f47d6fbc": { 52 | "position": { 53 | "x": 13.18923771052619, 54 | "y": 5.708607917547088, 55 | "z": 5.887664757669085 56 | }, 57 | "rotation": { 58 | "x": -0.18095903891980977, 59 | "y": 0.5314181198388357, 60 | "z": 0.11739060949107594, 61 | "w": 0.8191874345615229 62 | }, 63 | "viewCenter": { 64 | "x": 0, 65 | "y": -1, 66 | "z": 0 67 | } 68 | } 69 | }, 70 | "camera-uuids": [ 71 | "6962d389-b02c-41bc-937c-43c2f47d6fbc" 72 | ] 73 | } 74 | -------------------------------------------------------------------------------- /settings/packages/builder.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /settings/packages/project-setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "general": { 3 | "designResolution": { 4 | "width": 960, 5 | "height": 640, 6 | "fitWidth": true, 7 | "fitHeight": false 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.6" 3 | } 4 | -------------------------------------------------------------------------------- /settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.5", 3 | "modules": { 4 | "cache": {}, 5 | "includeModules": [ 6 | "base", 7 | "gfx-webgl", 8 | "3d", 9 | "2d", 10 | "ui", 11 | "particle", 12 | "physics-ammo", 13 | "physics-2d-box2d", 14 | "intersection-2d", 15 | "primitive", 16 | "profiler", 17 | "particle-2d", 18 | "audio", 19 | "video", 20 | "webview", 21 | "tween", 22 | "terrain", 23 | "tiled-map", 24 | "spine", 25 | "dragon-bones" 26 | ] 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /settings/v2/packages/project-setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "general": { 3 | "designResolution": { 4 | "width": 960, 5 | "height": 640, 6 | "fitWidth": true, 7 | "fitHeight": false 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /settings/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json" 4 | 5 | /* Add your custom configuration here. */ 6 | } 7 | --------------------------------------------------------------------------------