├── .gitignore ├── README.md ├── assets ├── animations.meta ├── animations │ ├── blast.meta │ ├── blast │ │ ├── blast.anim │ │ └── blast.anim.meta │ ├── block.meta │ ├── block │ │ ├── river.anim │ │ └── river.anim.meta │ ├── bullet.meta │ ├── bullet │ │ ├── bomb.anim │ │ └── bomb.anim.meta │ ├── enemy.meta │ ├── enemy │ │ ├── moving_0_1.anim │ │ ├── moving_0_1.anim.meta │ │ ├── moving_0_2.anim │ │ ├── moving_0_2.anim.meta │ │ ├── moving_0_3.anim │ │ ├── moving_0_3.anim.meta │ │ ├── moving_0_4_0.anim │ │ ├── moving_0_4_0.anim.meta │ │ ├── moving_0_4_1.anim │ │ ├── moving_0_4_1.anim.meta │ │ ├── moving_0_4_2.anim │ │ └── moving_0_4_2.anim.meta │ ├── player1.meta │ ├── player1 │ │ ├── moving.anim │ │ └── moving.anim.meta │ ├── player2.meta │ ├── player2 │ │ ├── moving.anim │ │ └── moving.anim.meta │ ├── ring.meta │ ├── ring │ │ ├── ring.anim │ │ └── ring.anim.meta │ ├── star.meta │ └── star │ │ ├── star.anim │ │ └── star.anim.meta ├── audios.meta ├── audios │ ├── addlife.mp3 │ ├── addlife.mp3.meta │ ├── bin.mp3 │ ├── bin.mp3.meta │ ├── bk_sound.mp3 │ ├── bk_sound.mp3.meta │ ├── bouns1000.mp3 │ ├── bouns1000.mp3.meta │ ├── camp_bomb.mp3 │ ├── camp_bomb.mp3.meta │ ├── game_over.mp3 │ ├── game_over.mp3.meta │ ├── game_start.mp3 │ ├── game_start.mp3.meta │ ├── get-prop.mp3 │ ├── get-prop.mp3.meta │ ├── player_bomb.mp3 │ ├── player_bomb.mp3.meta │ ├── player_move.mp3 │ ├── player_move.mp3.meta │ ├── prop-out.mp3 │ ├── prop-out.mp3.meta │ ├── scorepanel_di.mp3 │ ├── scorepanel_di.mp3.meta │ ├── shoot.mp3 │ ├── shoot.mp3.meta │ ├── tank_bomb.mp3 │ ├── tank_bomb.mp3.meta │ ├── 未知1.mp3 │ ├── 未知1.mp3.meta │ ├── 未知2.mp3 │ ├── 未知2.mp3.meta │ ├── 未知3.mp3 │ ├── 未知3.mp3.meta │ ├── 未知4.mp3 │ ├── 未知4.mp3.meta │ ├── 未知5.mp3 │ ├── 未知5.mp3.meta │ ├── 未知6.mp3 │ ├── 未知6.mp3.meta │ ├── 未知7.mp3 │ └── 未知7.mp3.meta ├── font.meta ├── font │ ├── black-number.png │ ├── black-number.png.meta │ ├── black_number.labelatlas │ └── black_number.labelatlas.meta ├── maps.meta ├── maps │ ├── 1.txt │ ├── 1.txt.meta │ ├── 10.txt │ ├── 10.txt.meta │ ├── 11.txt │ ├── 11.txt.meta │ ├── 12.txt │ ├── 12.txt.meta │ ├── 13.txt │ ├── 13.txt.meta │ ├── 14.txt │ ├── 14.txt.meta │ ├── 15.txt │ ├── 15.txt.meta │ ├── 16.txt │ ├── 16.txt.meta │ ├── 17.txt │ ├── 17.txt.meta │ ├── 18.txt │ ├── 18.txt.meta │ ├── 19.txt │ ├── 19.txt.meta │ ├── 2.txt │ ├── 2.txt.meta │ ├── 20.txt │ ├── 20.txt.meta │ ├── 21.txt │ ├── 21.txt.meta │ ├── 22.txt │ ├── 22.txt.meta │ ├── 23.txt │ ├── 23.txt.meta │ ├── 24.txt │ ├── 24.txt.meta │ ├── 25.txt │ ├── 25.txt.meta │ ├── 26.txt │ ├── 26.txt.meta │ ├── 27.txt │ ├── 27.txt.meta │ ├── 28.txt │ ├── 28.txt.meta │ ├── 29.txt │ ├── 29.txt.meta │ ├── 3.txt │ ├── 3.txt.meta │ ├── 30.txt │ ├── 30.txt.meta │ ├── 31.txt │ ├── 31.txt.meta │ ├── 32.txt │ ├── 32.txt.meta │ ├── 33.txt │ ├── 33.txt.meta │ ├── 34.txt │ ├── 34.txt.meta │ ├── 35.txt │ ├── 35.txt.meta │ ├── 4.txt │ ├── 4.txt.meta │ ├── 5.txt │ ├── 5.txt.meta │ ├── 6.txt │ ├── 6.txt.meta │ ├── 7.txt │ ├── 7.txt.meta │ ├── 8.txt │ ├── 8.txt.meta │ ├── 9.txt │ └── 9.txt.meta ├── prefabs.meta ├── prefabs │ ├── black.prefab │ ├── black.prefab.meta │ ├── block.meta │ ├── block │ │ ├── forest.prefab │ │ ├── forest.prefab.meta │ │ ├── ice.prefab │ │ ├── ice.prefab.meta │ │ ├── river.prefab │ │ ├── river.prefab.meta │ │ ├── stone.prefab │ │ ├── stone.prefab.meta │ │ ├── wall.prefab │ │ └── wall.prefab.meta │ ├── bullet.prefab │ ├── bullet.prefab.meta │ ├── enemytank_ico.prefab │ ├── enemytank_ico.prefab.meta │ ├── prop.prefab │ ├── prop.prefab.meta │ ├── tank.meta │ └── tank │ │ ├── enemy.prefab │ │ ├── enemy.prefab.meta │ │ ├── player1.prefab │ │ ├── player1.prefab.meta │ │ ├── player2.prefab │ │ └── player2.prefab.meta ├── scenes.meta ├── scenes │ ├── Game.fire │ ├── Game.fire.meta │ ├── Menu.fire │ └── Menu.fire.meta ├── scripts.meta ├── scripts │ ├── AudioMng.ts │ ├── AudioMng.ts.meta │ ├── Game.meta │ ├── Game │ │ ├── BaseTank.ts │ │ ├── BaseTank.ts.meta │ │ ├── BlockCamp.ts │ │ ├── BlockCamp.ts.meta │ │ ├── BlockWall.ts │ │ ├── BlockWall.ts.meta │ │ ├── Bullet.ts │ │ ├── Bullet.ts.meta │ │ ├── EnemyTank.ts │ │ ├── EnemyTank.ts.meta │ │ ├── Game.ts │ │ ├── Game.ts.meta │ │ ├── MapLayer.ts │ │ ├── MapLayer.ts.meta │ │ ├── PlayerTank.ts │ │ ├── PlayerTank.ts.meta │ │ ├── Prop.ts │ │ ├── Prop.ts.meta │ │ ├── TouchControl.ts │ │ ├── TouchControl.ts.meta │ │ ├── UpdateInformations.ts │ │ ├── UpdateInformations.ts.meta │ │ ├── Utils.ts │ │ └── Utils.ts.meta │ ├── Globals.ts │ ├── Globals.ts.meta │ ├── Logic.ts │ ├── Logic.ts.meta │ ├── Menu.meta │ ├── Menu │ │ ├── Menu.ts │ │ └── Menu.ts.meta │ ├── User.ts │ └── User.ts.meta ├── textures.meta └── textures │ ├── UI.meta │ ├── UI │ ├── bg.png │ ├── bg.png.meta │ ├── btn_blue.png │ └── btn_blue.png.meta │ ├── big-gameover.png │ ├── big-gameover.png.meta │ ├── blast.meta │ ├── blast │ ├── 0.png │ ├── 0.png.meta │ ├── 1.png │ ├── 1.png.meta │ ├── 2.png │ ├── 2.png.meta │ ├── 3.png │ ├── 3.png.meta │ ├── 4.png │ └── 4.png.meta │ ├── block.meta │ ├── block │ ├── camp0.png │ ├── camp0.png.meta │ ├── camp1.png │ ├── camp1.png.meta │ ├── forest.png │ ├── forest.png.meta │ ├── ice.png │ ├── ice.png.meta │ ├── river-0.png │ ├── river-0.png.meta │ ├── river-1.png │ ├── river-1.png.meta │ ├── stone.png │ ├── stone.png.meta │ ├── wall.png │ └── wall.png.meta │ ├── bullet.meta │ ├── bullet │ ├── bullet-0.png │ ├── bullet-0.png.meta │ ├── bullet-1.png │ ├── bullet-1.png.meta │ ├── bullet-2.png │ ├── bullet-2.png.meta │ ├── bullet-3.png │ ├── bullet-3.png.meta │ ├── bumb0.png │ ├── bumb0.png.meta │ ├── bumb1.png │ ├── bumb1.png.meta │ ├── bumb2.png │ └── bumb2.png.meta │ ├── gameover.png │ ├── gameover.png.meta │ ├── information.meta │ ├── information │ ├── 1P.png │ ├── 1P.png.meta │ ├── 2P.png │ ├── 2P.png.meta │ ├── enemytank-ico.png │ ├── enemytank-ico.png.meta │ ├── flag.png │ ├── flag.png.meta │ ├── playertank-ico.png │ └── playertank-ico.png.meta │ ├── prop.meta │ ├── prop │ ├── p0.png │ ├── p0.png.meta │ ├── p1.png │ ├── p1.png.meta │ ├── p2.png │ ├── p2.png.meta │ ├── p3.png │ ├── p3.png.meta │ ├── p4.png │ ├── p4.png.meta │ ├── p5.png │ └── p5.png.meta │ ├── ring.meta │ ├── ring │ ├── ring0.png │ ├── ring0.png.meta │ ├── ring1.png │ └── ring1.png.meta │ ├── stage.png │ ├── stage.png.meta │ ├── star.meta │ ├── star │ ├── star0.png │ ├── star0.png.meta │ ├── star1.png │ ├── star1.png.meta │ ├── star2.png │ ├── star2.png.meta │ ├── star3.png │ └── star3.png.meta │ ├── tank.meta │ ├── tank │ ├── enemy_tank.meta │ ├── enemy_tank │ │ ├── normal_tank.meta │ │ ├── normal_tank │ │ │ ├── 1-1-1.png │ │ │ ├── 1-1-1.png.meta │ │ │ ├── 1-1-2.png │ │ │ ├── 1-1-2.png.meta │ │ │ ├── 2-1-1.png │ │ │ ├── 2-1-1.png.meta │ │ │ ├── 2-1-2.png │ │ │ ├── 2-1-2.png.meta │ │ │ ├── 3-1-1.png │ │ │ ├── 3-1-1.png.meta │ │ │ ├── 3-1-2.png │ │ │ ├── 3-1-2.png.meta │ │ │ ├── 4-1-1.png │ │ │ ├── 4-1-1.png.meta │ │ │ ├── 4-1-2.png │ │ │ ├── 4-1-2.png.meta │ │ │ ├── g4-1-1.png │ │ │ ├── g4-1-1.png.meta │ │ │ ├── g4-1-2.png │ │ │ ├── g4-1-2.png.meta │ │ │ ├── y4-1-1.png │ │ │ ├── y4-1-1.png.meta │ │ │ ├── y4-1-2.png │ │ │ └── y4-1-2.png.meta │ │ ├── prop_tank.meta │ │ └── prop_tank │ │ │ ├── 1-1-1.png │ │ │ ├── 1-1-1.png.meta │ │ │ ├── 1-1-2.png │ │ │ ├── 1-1-2.png.meta │ │ │ ├── 1-2-1.png │ │ │ ├── 1-2-1.png.meta │ │ │ ├── 1-2-2.png │ │ │ ├── 1-2-2.png.meta │ │ │ ├── 1-3-1.png │ │ │ ├── 1-3-1.png.meta │ │ │ ├── 1-3-2.png │ │ │ ├── 1-3-2.png.meta │ │ │ ├── 1-4-1.png │ │ │ ├── 1-4-1.png.meta │ │ │ ├── 1-4-2.png │ │ │ ├── 1-4-2.png.meta │ │ │ ├── 2-1-1.png │ │ │ ├── 2-1-1.png.meta │ │ │ ├── 2-1-2.png │ │ │ ├── 2-1-2.png.meta │ │ │ ├── 2-2-1.png │ │ │ ├── 2-2-1.png.meta │ │ │ ├── 2-2-2.png │ │ │ ├── 2-2-2.png.meta │ │ │ ├── 2-3-1.png │ │ │ ├── 2-3-1.png.meta │ │ │ ├── 2-3-2.png │ │ │ ├── 2-3-2.png.meta │ │ │ ├── 2-4-1.png │ │ │ ├── 2-4-1.png.meta │ │ │ ├── 2-4-2.png │ │ │ ├── 2-4-2.png.meta │ │ │ ├── 3-1-1.png │ │ │ ├── 3-1-1.png.meta │ │ │ ├── 3-1-2.png │ │ │ ├── 3-1-2.png.meta │ │ │ ├── 3-2-1.png │ │ │ ├── 3-2-1.png.meta │ │ │ ├── 3-2-2.png │ │ │ ├── 3-2-2.png.meta │ │ │ ├── 3-3-1.png │ │ │ ├── 3-3-1.png.meta │ │ │ ├── 3-3-2.png │ │ │ ├── 3-3-2.png.meta │ │ │ ├── 3-4-1.png │ │ │ ├── 3-4-1.png.meta │ │ │ ├── 3-4-2.png │ │ │ ├── 3-4-2.png.meta │ │ │ ├── 4-1-1.png │ │ │ ├── 4-1-1.png.meta │ │ │ ├── 4-1-2.png │ │ │ ├── 4-1-2.png.meta │ │ │ ├── 4-2-1.png │ │ │ ├── 4-2-1.png.meta │ │ │ ├── 4-2-2.png │ │ │ ├── 4-2-2.png.meta │ │ │ ├── 4-3-1.png │ │ │ ├── 4-3-1.png.meta │ │ │ ├── 4-3-2.png │ │ │ ├── 4-3-2.png.meta │ │ │ ├── 4-4-1.png │ │ │ ├── 4-4-1.png.meta │ │ │ ├── 4-4-2.png │ │ │ └── 4-4-2.png.meta │ ├── player1_tank.meta │ ├── player1_tank │ │ ├── m0-0-1.png │ │ ├── m0-0-1.png.meta │ │ ├── m0-0-2.png │ │ ├── m0-0-2.png.meta │ │ ├── m1-0-1.png │ │ ├── m1-0-1.png.meta │ │ ├── m1-0-2.png │ │ ├── m1-0-2.png.meta │ │ ├── m2-0-1.png │ │ ├── m2-0-1.png.meta │ │ ├── m2-0-2.png │ │ ├── m2-0-2.png.meta │ │ ├── m3-0-1.png │ │ ├── m3-0-1.png.meta │ │ ├── m3-0-2.png │ │ └── m3-0-2.png.meta │ ├── player2_tank.meta │ └── player2_tank │ │ ├── m0-0-1.png │ │ ├── m0-0-1.png.meta │ │ ├── m0-0-2.png │ │ ├── m0-0-2.png.meta │ │ ├── m1-0-1.png │ │ ├── m1-0-1.png.meta │ │ ├── m1-0-2.png │ │ ├── m1-0-2.png.meta │ │ ├── m2-0-1.png │ │ ├── m2-0-1.png.meta │ │ ├── m2-0-2.png │ │ ├── m2-0-2.png.meta │ │ ├── m3-0-1.png │ │ ├── m3-0-1.png.meta │ │ ├── m3-0-2.png │ │ └── m3-0-2.png.meta │ ├── touch_button.meta │ └── touch_button │ ├── move_down.png │ ├── move_down.png.meta │ ├── move_left.png │ ├── move_left.png.meta │ ├── move_right.png │ ├── move_right.png.meta │ ├── move_up.png │ └── move_up.png.meta ├── creator.d.ts ├── jsconfig.json ├── project.json ├── settings ├── builder.json ├── project.json └── services.json └── tsconfig.json /README.md: -------------------------------------------------------------------------------- 1 | # CocosTank 2 | 3 | Cocos Creator版本:2.4.6 4 | 5 | 游戏预览: 6 | 7 | 该项目中所有素材均来源于网络 8 | -------------------------------------------------------------------------------- /assets/animations.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "31f65206-3a2c-4f18-82d0-d3fbc704a781", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/blast.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "fed07de7-8705-496e-a719-c0e4fa48f563", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/blast/blast.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "b2a81f6f-24bc-49da-a724-e793069897a0", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/block.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "4252f463-c2a8-4152-adc8-08a7239eba22", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/block/river.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "river", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.15, 7 | "sample": 60, 8 | "speed": 0.1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "cfb36df1-a4d3-4640-ac00-92e62a969c27" 18 | } 19 | }, 20 | { 21 | "frame": 0.06666666666666667, 22 | "value": { 23 | "__uuid__": "1c13e6be-da99-4afd-b5f2-1d198bc9b362" 24 | } 25 | }, 26 | { 27 | "frame": 0.13333333333333333, 28 | "value": { 29 | "__uuid__": "1c13e6be-da99-4afd-b5f2-1d198bc9b362" 30 | } 31 | } 32 | ] 33 | } 34 | } 35 | }, 36 | "events": [] 37 | } -------------------------------------------------------------------------------- /assets/animations/block/river.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "9ee2856b-e6f7-40e5-a243-60becde6174a", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/bullet.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "628a46e8-ac9b-4048-9fe6-8faa0d0cf86d", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/bullet/bomb.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "bomb", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.11666666666666667, 7 | "sample": 60, 8 | "speed": 0.5, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "f4f96222-6b95-463d-a1cd-c6ded8a6e731" 18 | } 19 | }, 20 | { 21 | "frame": 0.05, 22 | "value": { 23 | "__uuid__": "e68ec425-5ca1-4f35-9e87-c567d59634e2" 24 | } 25 | }, 26 | { 27 | "frame": 0.1, 28 | "value": { 29 | "__uuid__": "96c1bd1e-9819-4293-b71e-7e4e511607f2" 30 | } 31 | } 32 | ] 33 | } 34 | } 35 | }, 36 | "events": [ 37 | { 38 | "frame": 0.11666666666666667, 39 | "func": "onBulletDestory", 40 | "params": [] 41 | } 42 | ] 43 | } -------------------------------------------------------------------------------- /assets/animations/bullet/bomb.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "ce50d093-4f5b-4213-99f0-943494dc01fe", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/enemy.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "33291044-c2c6-49eb-91db-b2f7de4cb2a7", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_1.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving_0_1", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "61912913-af03-4230-b795-2f5c1a7d1010" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "5100765c-ae1a-42b5-87f8-9d718bb09b9a" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_1.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "d19b2019-f4dd-4fd6-9d83-9a6b69103898", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_2.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving_0_2", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "fe66b37f-16b6-46ef-9c3d-667436642042" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "bb4edd52-7a29-486e-bacc-3aeff0c64894" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_2.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "2072f2ac-e608-4f0f-a0d1-92be25d79d9c", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_3.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving_0_3", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "83fea753-bafc-4aec-bcf9-6e6b093c0501" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "a9185546-de29-4abb-84c9-553a836bd198" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_3.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "9617b4b2-702f-4d9b-928c-d18692c7be59", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_4_0.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving_0_4_0", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "040e6bec-f55a-4b40-ac76-cab8af06a3ec" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "716a59eb-4298-4c3b-8038-86dac0f77fd3" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_4_0.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "8abb2bbc-86d5-483a-9d1b-d3fe78b91d8b", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_4_1.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving_0_4_1", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "1c565d86-997b-47a6-abe4-b286a0a72d49" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "639350e5-da25-482b-9b46-50fa8f3a267a" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_4_1.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "16102e9e-39ae-4b1d-9b34-58c2cede7733", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_4_2.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving_0_4_2", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "24e13aa7-cef2-4e64-be76-e00ba2d7b625" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "019c138a-e7e3-4780-8215-fbb98d0873f8" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/enemy/moving_0_4_2.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "f6ab883a-fc0e-4e8b-bf31-335b3cc35b10", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/player1.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "24f0e830-4032-4087-b158-a74207377ed0", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/player1/moving.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.06666666666666667, 7 | "sample": 30, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "de8e03b8-2027-4268-a0e8-e12574945c4a" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "50f15886-141c-4dfe-a088-8faa77c2b22e" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/player1/moving.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "d12da4e0-add9-438b-8f0f-8b12d783242a", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/player2.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "2d8c4345-27d9-46e7-b510-3c80b4dd9a48", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/player2/moving.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "moving", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.06666666666666667, 7 | "sample": 30, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "6070747d-a01b-4c53-8359-90a41bb5f772" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "ec952e90-2cc5-4c57-9968-140f7ed4be67" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/player2/moving.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "3bd50094-5734-4a3a-b623-bc14367c01a9", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/ring.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "9fc1fade-177d-4b1c-ad08-f125835f9db7", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/ring/ring.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "ring", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_duration": 0.05, 7 | "sample": 60, 8 | "speed": 0.2, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "9086fb2c-a174-42d3-a7c7-255800381eef" 18 | } 19 | }, 20 | { 21 | "frame": 0.03333333333333333, 22 | "value": { 23 | "__uuid__": "8f1ea4a7-a2fd-4ab5-80a3-b21f8c8f17e0" 24 | } 25 | } 26 | ] 27 | } 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/animations/ring/ring.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "d61433f8-19cf-4d54-856c-9d91c10bf70f", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animations/star.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "a44db903-9b68-4bbc-819a-0e10ee1793eb", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/animations/star/star.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.2", 3 | "uuid": "e3d36b45-a174-47e3-8b4b-b3c8f51414a3", 4 | "importer": "animation-clip", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/audios.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "1726b92a-bc32-4fa4-a082-0108a3863d9f", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/audios/addlife.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/addlife.mp3 -------------------------------------------------------------------------------- /assets/audios/addlife.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "1ce9f2af-8e56-47f8-8ea7-2a95dfe5f9ef", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/bin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/bin.mp3 -------------------------------------------------------------------------------- /assets/audios/bin.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "3c5d5fd9-07d7-47e9-a09c-1ba4c1885774", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/bk_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/bk_sound.mp3 -------------------------------------------------------------------------------- /assets/audios/bk_sound.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "cbe42459-ef4b-419e-8883-c95e21963fd8", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 10.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/bouns1000.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/bouns1000.mp3 -------------------------------------------------------------------------------- /assets/audios/bouns1000.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "3c5e39bf-bc5d-4e03-a299-f6e64212c988", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/camp_bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/camp_bomb.mp3 -------------------------------------------------------------------------------- /assets/audios/camp_bomb.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "844c46c1-11be-4e74-b188-a83aa8c67376", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/game_over.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/game_over.mp3 -------------------------------------------------------------------------------- /assets/audios/game_over.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "72f2c546-6293-40ea-b212-d33cac372a8f", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 2.04, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/game_start.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/game_start.mp3 -------------------------------------------------------------------------------- /assets/audios/game_start.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "1461613b-f040-45ca-9e17-504cd34e4e03", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 5.04, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/get-prop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/get-prop.mp3 -------------------------------------------------------------------------------- /assets/audios/get-prop.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "13b836fb-4fb2-41d0-9663-f33cfaec210c", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/player_bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/player_bomb.mp3 -------------------------------------------------------------------------------- /assets/audios/player_bomb.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "6c3800b9-bc83-4766-bf27-d3b08d7d8b41", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/player_move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/player_move.mp3 -------------------------------------------------------------------------------- /assets/audios/player_move.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "66720f3c-18cb-447c-a1dc-e96035d6681c", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 10.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/prop-out.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/prop-out.mp3 -------------------------------------------------------------------------------- /assets/audios/prop-out.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "42db8a6f-eb38-45c0-be1e-367735633719", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/scorepanel_di.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/scorepanel_di.mp3 -------------------------------------------------------------------------------- /assets/audios/scorepanel_di.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "5872ec08-f37b-46b4-afc8-bd9ac289d9e4", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/shoot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/shoot.mp3 -------------------------------------------------------------------------------- /assets/audios/shoot.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "97204e49-98ac-406c-b2ff-659e3ff9c1be", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/tank_bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/tank_bomb.mp3 -------------------------------------------------------------------------------- /assets/audios/tank_bomb.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "65bb95dd-5e37-4c4c-901d-7e2e55469441", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知1.mp3 -------------------------------------------------------------------------------- /assets/audios/未知1.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "af8e0241-4c12-4de0-a02e-a6ae354f4a95", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知2.mp3 -------------------------------------------------------------------------------- /assets/audios/未知2.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "cd7ecf8c-8309-4ed1-ac3b-909dabb13dcb", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 8.04, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知3.mp3 -------------------------------------------------------------------------------- /assets/audios/未知3.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "f31122a4-3af7-46a0-b9c6-fdff61c2265e", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知4.mp3 -------------------------------------------------------------------------------- /assets/audios/未知4.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "712ef714-de95-4a4b-abdd-15c29198a924", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知5.mp3 -------------------------------------------------------------------------------- /assets/audios/未知5.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "b99a1cf4-1473-43b8-a198-f306d4e1e213", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知6.mp3 -------------------------------------------------------------------------------- /assets/audios/未知6.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "ce75f622-72d9-4746-b27c-bfe0d2dd3378", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/audios/未知7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/audios/未知7.mp3 -------------------------------------------------------------------------------- /assets/audios/未知7.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "uuid": "973788bb-96f1-4456-83b1-893567de76a1", 4 | "importer": "audio-clip", 5 | "downloadMode": 0, 6 | "duration": 1.032, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/font.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "9c196c10-a001-4dae-a9a1-250ba722aea1", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/font/black-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/font/black-number.png -------------------------------------------------------------------------------- /assets/font/black-number.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "064f24c7-919c-4d38-9196-8815c9e80b2a", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 70, 12 | "height": 7, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "black-number": { 16 | "ver": "1.0.6", 17 | "uuid": "1a9ccc00-fe2d-4aae-94a6-bd6564fc03bb", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "064f24c7-919c-4d38-9196-8815c9e80b2a", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 70, 28 | "height": 7, 29 | "rawWidth": 70, 30 | "rawHeight": 7, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/font/black_number.labelatlas: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.LabelAtlas" 3 | } -------------------------------------------------------------------------------- /assets/font/black_number.labelatlas.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.2", 3 | "uuid": "dcaf9250-a905-49a2-96de-ba53688fb6cb", 4 | "importer": "label-atlas", 5 | "itemWidth": 7, 6 | "itemHeight": 7, 7 | "startChar": "0", 8 | "rawTextureUuid": "064f24c7-919c-4d38-9196-8815c9e80b2a", 9 | "fontSize": 6.16, 10 | "subMetas": {} 11 | } -------------------------------------------------------------------------------- /assets/maps.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "4fdb67e4-a430-4dd7-b290-18affd687e14", 4 | "importer": "folder", 5 | "isBundle": true, 6 | "bundleName": "maps", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/maps/1.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000000000000000003300330033003300330033000033003300330033003300330000330033003300330033003300003300330033003300330033000033003300335533003300330000330033003355330033003300003300330033003300330033000033003300000000003300330000330033000000000033003300000000000033003300000000000000000000330033000000000033003333000000000033330033550033330000000000333300550000000000330033000000000000000000003333330000000000003300330033333300330033000033003300330033003300330000330033003300330033003300003300330033003300330033000033003300000000003300330000330033000000000033003300003300330003333000330033000000000000030030000000000000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/1.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "b0648d5a-a97d-4b6b-b4fa-279c29f3bbed", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/10.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000000000000000000333330000000000003333300003003300000000000033003003330000330011110033000003030000003300111100330000033300000033111111113300000333000000331111111133000003330000033311555511333000333300000333115555113330003303000033444444444444333333033333334444444444443333330033333355553355553333333000333333555533555533333330000033335500330055333330000000333355003300553333300000003333333333333333333000000033333333333333333330003311333333555533333333113333110000005555000000001133331111111111111111111111333311111111111111111111113300001111110000001111111100000011111103333011111111000000003000030030000030000000000030000300300000300000 -------------------------------------------------------------------------------- /assets/maps/10.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "f78c0d63-1fe7-4a89-b643-49d497f193ba", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/11.txt: -------------------------------------------------------------------------------- 1 | 0000000000550033003333000000000000005500330033330000000333333333003300000000000003333333330033000000000000000030003300333300111111000000300033003333001111110003000000000055001111111100030000000000550011111111000300333333553333111133550003003333335533331111005500333333550000330011110003000000005500003300111100030333333300551111111111000003333333005511111111110000000000550000111111111133000000005500001111111111330055330011111111551111113300553300111111115511111133000333111111111100000000333003331111111111000000003330003311110000000055333333000033111100000000003333330000001111000000000033000300000011110003333000330003000000111100030030000000000000331111000300300000000000 -------------------------------------------------------------------------------- /assets/maps/11.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "3c7595ad-c5ec-4a44-8d4e-9150a1f020b8", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/12.txt: -------------------------------------------------------------------------------- 1 | 00000000000000333333000000000000000000003333330000000033333300000000003300000000333333330033000033000000000000003300330000000033330000000033000000000000333300444444444400333000003355004444444444003330000033000000000000440033005550330000005555554400330055503300330033333344444400443333003300333333444444004433330000000000003355550044444400000000000033000000444444003333330000000000000000000033333300000000000000000000000033005555000000333300030000330000000000003333000333000000000000000033000033330000000003333000330000330000000000030030000000000000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/12.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "616d5e84-4083-4688-b3ee-03eaaa348d03", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/13.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000330000003300000000003333333300000033333333000033333333000000333333330000330000000033000000005500003300000000330000000055000055003333000000333300333300550033000000000033003333003300301100550011030055330033003011555555110300553300330000111111111100005533000000001111111111000000333300000011111111110000003333550000111111111100003333335500301155555511030033003355003011005500110300330033330033000000000033005500333300333300000033330055003355000000003300000000330033550000000033000000003300333333333300000033333355553333333333000000333333555533330000330000003300003300333300000003333000000033003333000000030030000000000033330000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/13.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "be034b31-9dce-45cb-b20e-515e7a5b0cd5", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/14.txt: -------------------------------------------------------------------------------- 1 | 00000000000000000000000000111100000033333300000011111111000033333333330000111111000003333333333330000011110000033333333333300000110000003333113311333300000000000033331133113333000000000000331111331111330000000000003311113311113300000011000033333333333333000011110000333333333333330000111111000033113311330000111111110000331133113300001111444444003333333333004444444444440033333333330044444400000000030303030300000000000000000303030303000000000000000030303030300000000000000000303030303000000000050505000000000000005050500505050000000000000050505030303000000000000000030303303030000000000000000303035050500500030030005005050550505005000300300050050505 -------------------------------------------------------------------------------- /assets/maps/14.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "dc0d5bd1-7122-48c3-ada9-ec6618654e43", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/15.txt: -------------------------------------------------------------------------------- 1 | 0000000033330000330000000000000000333300003300000000001111333300000033000000000011113333000000330000000011111111111111113333000000111111111111111133330000001155331133333311111111335511003311333333111111113355111133111111551111335033001111331111110011113350330000111133001111111133003300001111335511111111330033000033333333331111333330111100333333333311113333301111055533330000003333000000110500333300000033000000001100330033000000331111333011003300330055330011113330110033000003333311113300001100330000033300111133000011003333300333111100113311110033333003001111331133111100003300110000003311331100000033001103333033110011000000330000030030001111110000000000000300300011111100 -------------------------------------------------------------------------------- /assets/maps/15.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "088e1c7c-5b87-40e7-a40b-6e92e7a7f9d8", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/16.txt: -------------------------------------------------------------------------------- 1 | 00000000000000000000000000000000000000000000000000000000551155000000000000000000005511550000000000000000000000110011000000000000000000001100115500000000000000110000000011000000000000001111000011001100000000000011110000110011550000000000110011001100001100000000001100110011000011330000000011000011000000111100000000110000110000001111550000000011000000001111111100000000110000000011111111330000000011000011001111111100000000110000110011111111003300000000001100001111115533000000000011000011111155333300000000001100111111113333000000000011001111111155333300000000001100111111553333000003333011001111115555333300030030110000111155553333000300301100001111 -------------------------------------------------------------------------------- /assets/maps/16.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "fe0a2bc5-e946-4e04-96a5-a005ce2ed5b3", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/17.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000000000000000003300333300002222223333000033003333000022222233330000330000330055222222222200003300003300552222222222002222225033000033222222220022222250330000332222222200222222222222333303300000002222222222223333033000000000000522222222330330005555000005222222223303300000003333333322222222222222333333333333222222222222223333000000333322222222500000000000003333222222225000000000333333002222223333003300003333330022222233330033002222223322000000003300330022222233220000000033003300222222222255005500000033002222222222000000000033330033222222220000000033000000332222222203333000330000003333500000030030003300330033335000000300300033003300 -------------------------------------------------------------------------------- /assets/maps/17.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "d51ba0bb-78db-417e-a907-d7787b4f203a", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/18.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000555555110000000000000000005555551100003300000000000055000055000033000000000000550000550033113300000033333333005500331133000000333333330055000033113300003300113355550000331133000033001133555500000033001155331100330000000000330011553311003300000000000000550033553333000000000000005500335533330000000000333355330055000000000000003333553300550000000000000033001133551100000000000000330011335511000000000055555511003300003333000000555555110033000033330000005500333333330000335555000055003333333300003355550000550000550000000000553333005500005500000000005533330011555555000000000000335555115555550003333000003355550000000000030030000000555500000000000300300000005555 -------------------------------------------------------------------------------- /assets/maps/18.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "81504059-eb68-4ba6-8931-14ef7a7b210d", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/19.txt: -------------------------------------------------------------------------------- 1 | 0033003300330033003300330000330033003300330033003300003300330033003300330033000033003300330033003300330000550055005500550055005500000000000000000000000000000000000033000000330000000033003300330000003300330033330033333300330033333300333300330033003300330033003355005500550055005500550055000000005500000055000000001111000033001100330000111111110000330011003300001111111111113333113333111111111111111133001100331111111111111111111111111111111111111111111111111111111111110000000033111111330000000033003300331111113300330033003300330000110000330033000033003300001100003300330000330033000000000033003300003300330003333000330033000033003300030030003300330000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/19.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "4b5ec313-d39b-4323-bc4e-7e15604cdc87", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/2.txt: -------------------------------------------------------------------------------- 1 | 0000005500000055000000000000000055000000550000000000003300550000003300330033000033005500000033003300330000330000000033330033553300003300000000333300335533000000003300000000005500000000000033000000000055000000110000330000550000331133551100003300005500003311335511110000003300005500110000111100000033000055001100000033333311111155000011330000333333111111550000113300000000551133003300330033000000005511330033003300330055330055003300330000003300553300550033003300000033000033003300333333003355330000330033003333330033553300003300330033333300000000000033003300333333000000000000330000000000000033003300003300000003333000330033000033003300030030003333330000330033000300300033333300 -------------------------------------------------------------------------------- /assets/maps/2.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "169281be-4165-4378-ac97-c84f293f0925", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/20.txt: -------------------------------------------------------------------------------- 1 | 0000004400330000330033000000000044003300003300330000000000000000000033005500000000000000000000330055000000000044000055003300330000000000440033550033003300005500334400550000330033000000003344005500330000330000000033440000003300000000000000334400000033000000000033003344440044444444000033330033444400444444440000330000000000000011004400555500000033000000110044000000333303330055111111440000003333033300551111114400333333000300003311111144003300000003000033111111440033000000000000330011004400110000550000003300110044001100003300000033333300001111110033005500000000000011111100330033000000000044111111003300330003333000441111110000000000030030004400110000000000000300300044001100 -------------------------------------------------------------------------------- /assets/maps/20.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "3dfc224f-82cc-4e2f-99f4-6416a5ef578a", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/21.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000033333300003300000000000033333333333333330000000033333333333333333300000000111111111111111133330000001111111111111111333300001111000000000000111133330011110000000000001111333300110055000055000000111111001100550000550000001111110011005500005500000011111100110055000055000000111111001100001100000000111133333011000011000000001111333330111111111111111111333333301111111111111111113333333033111133331111113333333300331111333311111133333333000033333333333333333333005500333333333333333333330055550033553333333333333000555500335533333333333330005500553333550000003333555555005533005503333033335555550000000000030030000000000000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/21.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "b1a17ab9-a6f3-41de-9de0-e5d7156246bf", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/22.txt: -------------------------------------------------------------------------------- 1 | 0000000000110000000000000000000000001100000000000000000000001155110000000000000000000011551100000000000000001100001100001111000000000011000011000011110000000011331100000011333311000000113311000000113333110000000011331100000011110000110000113311000000111100001111000011000011000000001155110000110000110000000011553311000000115511000011001133110000001155110000110011553311000000110000115511005533110000001100001155110033110000110000001100110000331100001100000011001100001100001133110011331100000011000011331100113311000000000000113311000011000011000000001133110000110000110000110000110000000000115511001100001103333000001155111155110000030030001133110011551100000300300011331100 -------------------------------------------------------------------------------- /assets/maps/22.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "2411d53c-d3ab-40bf-96a2-061e1f37c7f5", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/23.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000000000000000000000000055550000000000000000000000555500000000000000000000000055000000000000000000000000550000000000000055551111335533111155550000555511113355331111555500000000551111551111550000000000005511115511115500000011000000551111115500000011110000005511111155000000115511000000111111000000115555110000001111110000001155110000000055115500000000111100000055001100550000001100000000550000005500000000000000005500000055000000000000005500005500005500000000000055000055000055000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003333000000000000000550000030030000055000000005500000300300000550000 -------------------------------------------------------------------------------- /assets/maps/23.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "3785c1fe-2563-4c01-a1b4-af2bf3f04adb", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/24.txt: -------------------------------------------------------------------------------- 1 | 0000550033550000000003000000005500330000000000030000000033003311003333333300000000330033110000333333000000111100331103300000005555001111003311033000000055551111111111113333330003330011111111111133333300033300000011110000553300033333030000111133330033000333000333550000333300000033330003330000330000000000330000030300003322222222222222222203003333222222222222222222030033002222222222222222220300000022222222222222222200005500222222222222222222000055002222222222222222223300330022222222222222222233003300222222222222222222030033002222222222222222220300330022222222222222222203003300000000002222222222030033000003333022222222220000330000030030002222222200000000000300300022222222 -------------------------------------------------------------------------------- /assets/maps/24.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "2661b1d3-83f7-4f89-a2f5-0c608f1647e7", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/25.txt: -------------------------------------------------------------------------------- 1 | 0000005500330033003300550000000055003300330033005500003300330000000000550000000033003300000000005500000000330033000055000055005555003300330000550000550055550033000000330055330000005500330000003300553300000055000000003333003333005500000000000033330033330055000000005500330000333300333300000055003300003333003333005500550000330055000055330055005500003300550000553300000033330033000000335500000000333300330000003355000000553333003333003333000033005533330033330033330000330033000000335500000000333300330000003355000000003333000000330033335500550000330000003300333355005500003333003333000000000033550000330033330003333000335500003300330000030030003333333333003300000300300033333300 -------------------------------------------------------------------------------- /assets/maps/25.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "bf6295c7-f980-40ac-ae80-36c803745d39", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/26.txt: -------------------------------------------------------------------------------- 1 | 0000444400000000000000000000004444000000000000000000000000441100300000000000005500004411003000000000000011000000000050003000444400115500000000500030004444001111005500030000501144000011110000330300005011440000111111000055000300000000001111110000553303000000005511115500000300550000000011111100550003005533000055111155000033550003005500111111000000005500030000001111000000000030335500001111110000000000300055000011111100004411050000303300551111000044110500003000505011110044440003000500000000001100444400030005000000000011000000000000030011440000550000000000000300114400000055000000000000000044440000550000000003333000444400005555000000030030000000005555550000000300300000000055 -------------------------------------------------------------------------------- /assets/maps/26.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "dfc72bbd-5004-432e-ac4e-82da9e4522a7", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/27.txt: -------------------------------------------------------------------------------- 1 | 0000000055000000000000000000000000550000000000000000555500005500005555000000005555000055000055550000000000550000550000005500555511005500005500000055005555110055000055555500110055000000550000555555001100550000003300000000550055555500000033000000005500555555000011555500553355333300000000115555005533553333000000000000551155110000330000555500005511551100003300005555000055000011000055000055000000550000110000550000550000003300005500005555335500000033000055000055553355001155555511113355550033550011555555111133555500335500000000330000000011110033000000003300000000111100330000000055000000000011003300000000550003333000110033000000005500030030005500330000000055000300300055003300 -------------------------------------------------------------------------------- /assets/maps/27.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "6fcf6d97-2a7b-46d0-bb85-3acc01b14468", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/28.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000005500000000000000000000000055000000000000000000000005500000000000000005500000055000000000000000011000033300000000000000033113300333000000000000000111111003330000000000000551111115533300000000000001111221111333000000000003311112211113330000000000011112222221111300000000055111122222211113000000000111122222222221111000000331111222222222211113300001111222222222222221111005511112222222222222211115511112222222222222222221111111122222222222222222211110011222222222222222222110000112222222222222222221100001122222222222222222211000011222222222222222222110000112222220000002222221100001122222203333022222211000011222200030030002222110000112222000300300022221100 -------------------------------------------------------------------------------- /assets/maps/28.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "eb5ed957-2399-496f-9b3b-7c03bf372aaf", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/29.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000033000000000000000000000000330000003344440055003300000000000033444400550033000000000000004444331111114444005500000044443311111144440055000000000000111111444433000000000000001111114444330000005500004444001100000000000055000044440011000000000011113300444455000000003300111133004444550000000033001111110000000000005500005511111100000000000055000055003344440033000000000000000033444400330000000000000055004444111144441111003300550044441111444411110033000000000011004444111144440000000000110044441111444400000000551100000011114444000000005511000000111144440000003300330000000000000000000033003303333000000000003300000000030030003355000033000000000300300033550000 -------------------------------------------------------------------------------- /assets/maps/29.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "62dd0d49-76f9-47eb-86aa-2448c2bfe439", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/3.txt: -------------------------------------------------------------------------------- 1 | 0000000033000000330000000000000000330000003300000000001111113300000000000000000011111133000000000055555533111111000000000000000000331111110000000000000000001111111100000033003333333011111111000000330033333330111111113333333300330003001111111133333300003300030011111111000033000000000300111111110000330000000003000011000000005555550000110000110000000055555500001100000000000000000000111111110033003300000000001111111133300333300333333311111111333003333003000000111111110000000000330000001111111100000000003300333311111111330000500000003333111111003300005000000000001111110033330050000000000011111100333300500003333000111111005533330000030030003300000055333300000300300033000000 -------------------------------------------------------------------------------- /assets/maps/3.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "1da85178-d8d5-4fd9-a138-23205c89c44f", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/30.txt: -------------------------------------------------------------------------------- 1 | 00000000000000000000000000000000000000000000000000000000000000333300000055000000000000001111000000110000005555003311115500331133000011110011111111001111110033111133111111113311111133111111111111111111111111111111111111111111111111111155114411111111114411111111551144111111111144111111111111444444111111444444115511114444441111114444441155111111114411551111114411111111111144115511111144111111111111111111111111111111111111111111111111111111111111111111333311111111115511111111110000111111111100551111113300003311111155000011111100000000111111000000553333000000003333330000000000000003333000000000000000000000030030000000000000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/30.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "d8304abf-2e0d-48fb-8536-b924e98b7f92", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/31.txt: -------------------------------------------------------------------------------- 1 | 0000004400000000440000000000000044000000004400000000444400440044444444004444444444004400444444440044444411113300003300004400441144111133000033000044004411441144444444005500003311111111444444440055000033111111111100440000440044444444111111004400004400444444441144440044004444000044000000444400440044440000440000000000331133003311004400004400003311330033110044000044004444114444444400113300440044441144444444001133004433000033000044001111440044330000330000440011114400444444004444004433444444000044440044440044334444440000000033001111000011440000440000330011110000114400004400444444110000000044004444004444441103333000440044440044000000030030000000000000440000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/31.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "837d52b0-fbc4-439f-8dce-bbeec4924a0d", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/32.txt: -------------------------------------------------------------------------------- 1 | 2222222222220022222222222222222222222200222222222222222222222222222222222222222222222222222222222222222222222233222222222233222222222222332222222222332222222233003300332233003300332222330033003322330033003322223333330000000000333333222200003300000000003300002222222233003355330033222222222222333333553333332222225522222200550055002222225555222222000000000022222255222222220033003300222222222222222200330033002222222222222222003300330022222222222222220033003300222222222222223300000000003322222222222233000033000033222222223322330055555500332233222233223300000000003322332200330033000000000033003300003333330003333000333333000033000000030030000000330000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/32.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "b0fa711d-0012-4730-a8d0-883df694e0c4", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/33.txt: -------------------------------------------------------------------------------- 1 | 0000000055000000005500000000000000550000000055000000005500000055000055111100000055000000550000551111000000005500000000551100500000000055000000005511555000000000005500111111111100050000000055001111111111000500005000005511115511000055000055000055111155110000550000555011005511115511110500000050110055111155000005000000111111111100005500000000001111111111000055000000000050110055110000005500000055501100551100000055000000111111550055000000005500001111115500550055000055001111115500000000050000000011111155000000000000000000000055000000000000000005550000550000000000000000055500000000000000000000500000000000000003333000555000005000000000030030000000000050005500000300300000000000 -------------------------------------------------------------------------------- /assets/maps/33.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "3a45d8e6-a92c-4696-b0a0-5b539964e028", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/34.txt: -------------------------------------------------------------------------------- 1 | 0000000030030000000000000000000000300300000000000000303030030030000030300000003030300300300000303000000030303033330000003030000000303030333300000030333000000303003330000003303333000003030033300000033033330000003000330330003033333300000030003303300030333333000000300300003330330303330000003003000033303303033300000030000003333330003033000000300000033333300030330000000300003033333000303300000003000030333330003033000000033333003333330030303333000300000033333300303000330003000003303303303030030300030000033033033030300303000030003303303333000003000000300033033033330000030000003003300000003330003000000030033003333033000300000000300300030030003333000000003003000300300033330000 -------------------------------------------------------------------------------- /assets/maps/34.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "92847d45-4834-45ba-b1c9-26af56f9ff5c", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/35.txt: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000000000000000000000003300330000000000000000000033003300000000000011000011331133110000110000110000113311331100001100003311113333333333111133110033111133333333331111331100333333335533553333333311003333333355335533333333110044444433333333334444441100444444333333333344444411004433333333333333333344441144333333333333333333444411333333443333334433333311113333334433333344333333111133334444443344444433334444333344444433444444333344441144441111111111444411441111444411111111114444114411001111000000000011110011000011110000000000111100110000000000000000000000000000000000000003333000000000000000000000030030000000000000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/35.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "ff2002aa-4c2f-4f9d-a826-2c908ccc1031", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/4.txt: -------------------------------------------------------------------------------- 1 | 0011110000000000000000110000111100000000000000001100111100000033330000000000111111000033333333330000001111000003333333333333000055110000033333333333333300005500003333333333333333300000000033333333333333333000000003330000003333330030000000030000000000333300300044000300500050003330000000440003005000500033300000000000330000000000333000444400003300333300003330004444000033333333333333330000000000333333333333333300000000033333333333333333300000000333333333333333333000000033333333333333333333000000000033333333333300000000003333003333333300333300110033333300333300333333001111003333000000003333001111110000000003333000000011115511000000030030000011115555110000000300300000111155 -------------------------------------------------------------------------------- /assets/maps/4.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "d59a8481-9a96-47f2-95ef-367961ba7ff8", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/5.txt: -------------------------------------------------------------------------------- 1 | 0000000033330000000000000000000000333300000000000000000000003300000055555500005500330033000000000055000055003300000033000000000000550033000000330000000000003300333333003333004444004433003333330033330044440044330000003300000000440000000000000000000000004400000000000000444400444444003333000033004444004444440033333333000044330033300000000033330000443300333000000000000000004400000000000550000000000044000000000005500044444400440055003300050000444444004400550033000500000000000000000000000005333300000033330000000000053333000000003333333333000000000000000033000000333300000033333300000000000033330000333300000003333000003300003300000000030030000000000000000000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/5.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "54d0f9d7-9d90-4a6d-91e9-f2ec0bd06d82", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/6.txt: -------------------------------------------------------------------------------- 1 | 0000000000030030111100000000000000000300301111000000003005003000000003113003110030050030000000031130031100300500300033000311300311003005003000330003113003110033000033005500331100331100330000330055003311003311000000035500330033500011110000000300003300005000111133333000001133110000033333333330000011331100000333330000000003111111300000000000000000031111113000000000553333003311111133033333555533330000111111000333335555555500000011000000555555000000003300110033000000000033000033000000330000000000330000330000003300000000003330000033003300000333110033300000000000000003331100003300000000000000111111000000000003333000001111110000000000030030000000111100003300000300300000331111 -------------------------------------------------------------------------------- /assets/maps/6.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "73bb43ce-a7ee-4861-9cd7-8ac6b0b82856", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/7.txt: -------------------------------------------------------------------------------- 1 | 0000000000000055550000000000000000000000000000000000000055555555000000005500000000550000000000000055000000005500000011005555550000000055000000110000555500000055000000115500000055000000550000001155000000550000000000001155550000005555000000000011555500000000550000550011555555005500000000005500115555550055000000000005005555000000555500000000050055550000005555000000500000005500555555000005005000000055005555550000050000055500000055551100005500000555000000555511000055000055000000005511000055550000550000000055110000555500005555550000110000550000000000005500001100005500000000000000000000000055000055000000000003333000000055550000000000030030000000000055550000000300300000000000 -------------------------------------------------------------------------------- /assets/maps/7.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "d0d76468-9cb1-4e03-a621-7bfd96414539", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/8.txt: -------------------------------------------------------------------------------- 1 | 0000330000330000003300000000003300003300330033000000113333330033000000333000001133333300330055003330000011111100003300330033000330111111000000003300000003301144444444444444444444004411444444444444444444440044003300000000000000000000000033000000003333000000000000003300000333333333335555000033000003333300330000003333003300033333113300003333330033000333331133555533000000550000001111111100000000005500550011111111000044440044444444440044444444444400444444444400444444441111000300000000000000000011110003000033330000000000111133003000000300000033001111330030000003005533330011003300300000000033003300005533003003333000000033000000000000030030000000330000000000000300300033000000 -------------------------------------------------------------------------------- /assets/maps/8.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "7aaf61de-c0b9-41fd-9f16-ae39c19cbc25", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/maps/9.txt: -------------------------------------------------------------------------------- 1 | 0000003300000000000011000000000033000000000055110000330000000000001105555000333300000000005511055550003300000000110555500055110000000000551105555000001100000000055550005511000000000000000555500000110000000000000000551100000000000000000000000011000000000000000000000011001100110011000000000000115511001155110000005533000555500005555000335555330005555000055550003355000000115511001155110000000000001100110011001100000000000000000000000000000000000000005500000055000000003300000555500005555000003333000005555000055550000033330000115511001155110000333300001100110011001100003300000000000000000000000000000033000003333000003300000000333300030030003333000000003333000300300033330000 -------------------------------------------------------------------------------- /assets/maps/9.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "89af335e-694c-412d-b569-13c0a83ae76f", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "4e927670-e970-4056-8d5a-9ff201b46238", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/prefabs/black.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "dc8cd331-c8a0-4d6f-ad3f-be444beb47b2", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/block.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "20d719e5-36b6-4096-b5e1-86be9f0d402b", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/prefabs/block/forest.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "2a310eea-871a-4595-8fab-eb214576f102", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/block/ice.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "1b9c7edf-47aa-4af8-bcf1-2e8cc25919b8", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/block/river.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "29c649b1-cec1-494b-a023-cd8cc99cd27e", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/block/stone.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "f98e4e6a-0ad5-4d6b-8bf5-ec1830d8b5ad", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/block/wall.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "54ca7b71-65f0-4189-9db6-ac20e505f0aa", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/bullet.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "39aa1463-4072-4b87-8c7d-abe38216e6c9", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/enemytank_ico.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "cde0a3eb-0fcf-4b0a-bd2d-a321fbc58288", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/prop.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "1594e546-e4d5-4948-a04a-e4a90649d7f7", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "c443a71a-a4c3-4a80-8f99-bc469b2260d0", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/prefabs/tank/enemy.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "08d8dd45-5884-4190-b0c5-4fb6a6bd2a64", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/tank/player1.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "5b74eb49-d3dd-4c9c-acc5-ae01c56bfb08", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefabs/tank/player2.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "e9d70ae4-8423-4b07-800b-1a096d032302", 4 | "importer": "prefab", 5 | "optimizationPolicy": "AUTO", 6 | "asyncLoadAssets": false, 7 | "readonly": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "82b99417-a124-42f1-858a-c6eb5867aff4", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "scenes", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/scenes/Game.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "33b91d94-d2e2-4117-94db-b200c8c2e451", 4 | "importer": "scene", 5 | "asyncLoadAssets": false, 6 | "autoReleaseAssets": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scenes/Menu.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "c2b2811f-ab9c-417b-bb98-bc203fb84c3f", 4 | "importer": "scene", 5 | "asyncLoadAssets": false, 6 | "autoReleaseAssets": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "2e1e1b9a-648a-4584-a9cd-ca44810708e3", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/scripts/AudioMng.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "49e8496b-12a6-426b-96f0-4c63194f30eb", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "26456396-96b9-4321-a9fc-a6d8421fcf57", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/scripts/Game/BaseTank.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "d76c15ce-6ca8-4fb5-9bb6-185f4d838be8", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/BlockCamp.ts: -------------------------------------------------------------------------------- 1 | import Game from "./Game"; 2 | import AudioMng from "../AudioMng"; 3 | 4 | const { ccclass, property } = cc._decorator; 5 | 6 | @ccclass 7 | export default class BlockCamp extends cc.Component { 8 | @property(cc.SpriteFrame) 9 | destoryed: cc.SpriteFrame = null; 10 | 11 | tryDestory() { 12 | this.getComponent(cc.Sprite).spriteFrame = this.destoryed; 13 | 14 | // 播放爆炸音效 15 | cc.find("/Game/AudioMng").getComponent(AudioMng).playAudio("camp_bomb"); 16 | 17 | // 摧毁后播放上升的game over动画 18 | cc.find("/Game").getComponent(Game).gameOver(); 19 | } 20 | } -------------------------------------------------------------------------------- /assets/scripts/Game/BlockCamp.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "60d247cf-7092-4859-a9c9-935f0463c6c4", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/BlockWall.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "720daac7-0414-40e2-be7f-ff116da84c74", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/Bullet.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "6dfdb113-ef77-41ce-8377-533d185afe5b", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/EnemyTank.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "18129626-ebcd-4f85-ac1f-9221f287ec44", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/Game.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "1959f213-57c3-4c9e-b1f0-4dc443c5e310", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/MapLayer.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "14278320-4156-4b3e-a4b3-55d8ff9c9310", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/PlayerTank.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "e9a9c32a-c0b0-484b-8ad9-293a5d32f30c", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/Prop.ts: -------------------------------------------------------------------------------- 1 | const { ccclass, property } = cc._decorator; 2 | 3 | @ccclass 4 | export default class Prop extends cc.Component { 5 | @property([cc.SpriteFrame]) 6 | frames: cc.SpriteFrame[] = []; 7 | 8 | init() { 9 | // 随机变成一种道具 10 | 11 | // 随机放在一个地点 12 | 13 | // 闪烁动画 14 | 15 | // 检查玩家是否拾取 16 | 17 | // 20秒后消失 18 | } 19 | 20 | // 检查玩家是否拾取 21 | check() { 22 | 23 | } 24 | 25 | // 产生效果 26 | effective() { 27 | 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /assets/scripts/Game/Prop.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "65bcb1d3-1f2a-477c-8924-ea0fbbdbcd10", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/TouchControl.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "d4156a30-48aa-4606-a644-1adf18889f35", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/UpdateInformations.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "abd0995d-e997-4909-ab7f-8da579cebe10", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Game/Utils.ts: -------------------------------------------------------------------------------- 1 | // 将给定数字调整为8的倍数 2 | export function adjustNumber(number: number) { 3 | return Math.round(number / 8) * 8; 4 | } 5 | -------------------------------------------------------------------------------- /assets/scripts/Game/Utils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "0b982ded-7a62-4f6b-964c-de797e6a93e3", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Globals.ts: -------------------------------------------------------------------------------- 1 | export enum Dir { 2 | LEFT = 0, 3 | UP = 1, 4 | RIGHT = 2, 5 | DOWN = 3 6 | }; 7 | 8 | export enum GameMode { 9 | ONE, MORE 10 | }; 11 | 12 | let server = "ocfbnj.cn"; 13 | if (CC_DEBUG) { 14 | server = "127.0.0.1" 15 | } 16 | 17 | export const Globals = { 18 | BLOCK_SIZE: 8, 19 | TANK_SIZE: 16, 20 | MAP_HEIGHT: 208, 21 | MAP_WIDTH: 208, 22 | BULLET_SIZE: 4, 23 | ENEMIES_COUNT: 20, 24 | 25 | ENEMY1: cc.v2(8, 200), 26 | ENEMY2: cc.v2(104, 200), 27 | ENEMY3: cc.v2(200, 200), 28 | PLAYER1: cc.v2(80, 8), 29 | 30 | USER_SERVER: `ws://${server}:8080/`, 31 | LOGIC_SERVER: `ws://${server}:8081/`, 32 | 33 | Z: { 34 | FOREST: cc.macro.MAX_ZINDEX, 35 | TANK: cc.macro.MAX_ZINDEX - 1, 36 | BULLET: cc.macro.MAX_ZINDEX - 2, 37 | OTHERS: cc.macro.MAX_ZINDEX - 3, 38 | ICE: cc.macro.MAX_ZINDEX - 4, 39 | }, 40 | }; 41 | -------------------------------------------------------------------------------- /assets/scripts/Globals.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "39542c4d-223d-4402-b0e2-e7e13add54f9", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Logic.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "2f8be879-6d96-4a2a-b666-028e78cfcfa8", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/Menu.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "25b78344-7180-4108-9465-2561c8faa775", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/scripts/Menu/Menu.ts: -------------------------------------------------------------------------------- 1 | import User from "../User"; 2 | 3 | const { ccclass } = cc._decorator; 4 | 5 | // TODO 添加菜单 6 | @ccclass 7 | export default class Menu extends cc.Component { 8 | user: User = null; 9 | 10 | onLoad() { 11 | cc.director.preloadScene("Game"); 12 | 13 | this.user = cc.find("/User").getComponent(User); 14 | 15 | if (this.user.id != -1) { 16 | cc.find("/Canvas/user_name").getComponent(cc.Label).string = `游客${this.user.id}`; 17 | } 18 | 19 | if (this.user.wsUser) { 20 | this.user.wsUser.send(JSON.stringify({ 21 | "type": "get count" 22 | })); 23 | } 24 | } 25 | 26 | onBtnOne() { 27 | cc.director.loadScene("Game"); 28 | } 29 | 30 | onBtnMore() { 31 | // 自动匹配玩家 32 | this.user.wsUser.send(JSON.stringify({ 33 | "type": "start game", 34 | "id": this.user.id 35 | })); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /assets/scripts/Menu/Menu.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "d6228890-f5cb-491f-a2f9-8c6fd31a4f9b", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/scripts/User.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "91325f1e-ad06-4e21-a36f-d7db555920bb", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /assets/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "6880da34-2c3d-4603-a6a2-33e9bcb8debd", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/UI.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "94273c0f-227a-4fee-bab4-85af213de8d2", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/UI/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/UI/bg.png -------------------------------------------------------------------------------- /assets/textures/UI/bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "9cd42dc5-3935-4b08-972c-ae615a9a32de", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "bilinear", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 1334, 12 | "height": 750, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bg": { 16 | "ver": "1.0.6", 17 | "uuid": "0f06cbfd-acfb-4710-a640-6eb18410c042", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "9cd42dc5-3935-4b08-972c-ae615a9a32de", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 1334, 28 | "height": 750, 29 | "rawWidth": 1334, 30 | "rawHeight": 750, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/UI/btn_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/UI/btn_blue.png -------------------------------------------------------------------------------- /assets/textures/UI/btn_blue.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4acc53a3-8363-4fc7-9859-df41cb8b965e", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "bilinear", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 154, 12 | "height": 59, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "btn_blue": { 16 | "ver": "1.0.6", 17 | "uuid": "cdc72974-6e42-4891-8adf-75f57ad7244e", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4acc53a3-8363-4fc7-9859-df41cb8b965e", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 154, 28 | "height": 59, 29 | "rawWidth": 154, 30 | "rawHeight": 59, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/big-gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/big-gameover.png -------------------------------------------------------------------------------- /assets/textures/big-gameover.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "7f625dea-0c81-451c-b69d-3d79c2d9ba78", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 124, 12 | "height": 80, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "big-gameover": { 16 | "ver": "1.0.6", 17 | "uuid": "28517e29-309d-41ff-82dc-4727d7cc6b7a", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "7f625dea-0c81-451c-b69d-3d79c2d9ba78", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 124, 28 | "height": 80, 29 | "rawWidth": 124, 30 | "rawHeight": 80, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/blast.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "1d2968ad-4a38-4138-99e9-6c727014fdef", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/blast/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/blast/0.png -------------------------------------------------------------------------------- /assets/textures/blast/0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "21fdb020-02e3-41fb-97ef-cf974c329429", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "0": { 16 | "ver": "1.0.6", 17 | "uuid": "949bdf85-20a8-444c-b646-2b0212537c5f", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "21fdb020-02e3-41fb-97ef-cf974c329429", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": 0.5, 25 | "trimX": 11, 26 | "trimY": 10, 27 | "width": 11, 28 | "height": 11, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/blast/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/blast/1.png -------------------------------------------------------------------------------- /assets/textures/blast/1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "d0788aa1-2c52-4a14-af8a-6d911d3d7944", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1": { 16 | "ver": "1.0.6", 17 | "uuid": "ad64147f-14bf-4d14-8104-41efc35b3b42", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "d0788aa1-2c52-4a14-af8a-6d911d3d7944", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": 0, 25 | "trimX": 9, 26 | "trimY": 9, 27 | "width": 15, 28 | "height": 14, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/blast/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/blast/2.png -------------------------------------------------------------------------------- /assets/textures/blast/2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "c5889874-eded-4cfd-8336-329a22a3bf07", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "2": { 16 | "ver": "1.0.6", 17 | "uuid": "7ede4f49-59c0-4ecf-b271-7ee6a57bf3a0", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "c5889874-eded-4cfd-8336-329a22a3bf07", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 8, 26 | "trimY": 8, 27 | "width": 16, 28 | "height": 16, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/blast/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/blast/3.png -------------------------------------------------------------------------------- /assets/textures/blast/3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4ff987a6-842e-401e-8d93-e6da90854759", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "3": { 16 | "ver": "1.0.6", 17 | "uuid": "87256478-a894-4376-93b7-2e13dd506b4f", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4ff987a6-842e-401e-8d93-e6da90854759", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 1, 27 | "width": 32, 28 | "height": 29, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/blast/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/blast/4.png -------------------------------------------------------------------------------- /assets/textures/blast/4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "95dacd4c-78bb-4301-9544-cfdc2371fcf8", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "4": { 16 | "ver": "1.0.6", 17 | "uuid": "ba583519-b891-40ad-811e-3c344faffc33", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "95dacd4c-78bb-4301-9544-cfdc2371fcf8", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 32, 28 | "height": 32, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "9992f9f9-2ed2-4e6c-a9ae-37188c6a828e", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/block/camp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/camp0.png -------------------------------------------------------------------------------- /assets/textures/block/camp0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4ee71582-6993-4dfd-a743-32e53a2ae8a9", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "camp0": { 16 | "ver": "1.0.6", 17 | "uuid": "1c8aeef3-6cb8-4110-95b6-d89629b53dc4", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4ee71582-6993-4dfd-a743-32e53a2ae8a9", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 1, 27 | "width": 16, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/camp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/camp1.png -------------------------------------------------------------------------------- /assets/textures/block/camp1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "79d967f9-ce2b-4fec-8109-ca1b308ce5d7", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "camp1": { 16 | "ver": "1.0.6", 17 | "uuid": "20ac065f-a2aa-4d81-a807-2e9d3b270840", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "79d967f9-ce2b-4fec-8109-ca1b308ce5d7", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": -1, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 14, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/forest.png -------------------------------------------------------------------------------- /assets/textures/block/forest.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "028cd126-475b-42e3-b493-5405ae37c951", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 8, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "forest": { 16 | "ver": "1.0.6", 17 | "uuid": "19b1d16c-f87a-4640-b163-771639980c13", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "028cd126-475b-42e3-b493-5405ae37c951", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 8, 28 | "height": 8, 29 | "rawWidth": 8, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/ice.png -------------------------------------------------------------------------------- /assets/textures/block/ice.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "95c72c6b-f56e-4458-bf82-9c964f81e708", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 8, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "ice": { 16 | "ver": "1.0.6", 17 | "uuid": "34a99776-ca52-4f43-b6b8-89bfaec9f3a2", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "95c72c6b-f56e-4458-bf82-9c964f81e708", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 8, 28 | "height": 8, 29 | "rawWidth": 8, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/river-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/river-0.png -------------------------------------------------------------------------------- /assets/textures/block/river-0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "bc0ede96-c0bf-4d93-9029-9a214b64f757", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 8, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "river-0": { 16 | "ver": "1.0.6", 17 | "uuid": "cfb36df1-a4d3-4640-ac00-92e62a969c27", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "bc0ede96-c0bf-4d93-9029-9a214b64f757", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 8, 28 | "height": 8, 29 | "rawWidth": 8, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/river-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/river-1.png -------------------------------------------------------------------------------- /assets/textures/block/river-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "bc7c9ee8-17c1-4c65-96ab-3932822846f5", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 8, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "river-1": { 16 | "ver": "1.0.6", 17 | "uuid": "1c13e6be-da99-4afd-b5f2-1d198bc9b362", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "bc7c9ee8-17c1-4c65-96ab-3932822846f5", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 8, 28 | "height": 8, 29 | "rawWidth": 8, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/stone.png -------------------------------------------------------------------------------- /assets/textures/block/stone.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "0abeeab2-5089-44e5-9385-cabf21729e3b", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 8, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "stone": { 16 | "ver": "1.0.6", 17 | "uuid": "51603359-8bba-46ea-9b40-11431ad4458d", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "0abeeab2-5089-44e5-9385-cabf21729e3b", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 8, 28 | "height": 8, 29 | "rawWidth": 8, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/block/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/block/wall.png -------------------------------------------------------------------------------- /assets/textures/block/wall.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "3c70ae90-76be-4531-a5ba-5f13b4591e9e", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 8, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "wall": { 16 | "ver": "1.0.6", 17 | "uuid": "2467893c-7c9c-48cb-9310-b013d2daf08d", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "3c70ae90-76be-4531-a5ba-5f13b4591e9e", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 8, 28 | "height": 8, 29 | "rawWidth": 8, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "5d2e5b7c-aa55-42b9-a8dd-f1cb1e46ee89", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bullet-0.png -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "c5c8883c-d8f9-45f2-8f36-c1aad066695a", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 4, 12 | "height": 3, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bullet-0": { 16 | "ver": "1.0.6", 17 | "uuid": "50ee8d7f-52fd-4a05-a5fb-3e236bfa8efb", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "c5c8883c-d8f9-45f2-8f36-c1aad066695a", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 4, 28 | "height": 3, 29 | "rawWidth": 4, 30 | "rawHeight": 3, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bullet-1.png -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "64ff4bd3-9f1b-4afc-8728-9991d1c911fe", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 3, 12 | "height": 4, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bullet-1": { 16 | "ver": "1.0.6", 17 | "uuid": "bea80ff1-931b-4536-90ce-a7b6a73b9cf2", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "64ff4bd3-9f1b-4afc-8728-9991d1c911fe", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 3, 28 | "height": 4, 29 | "rawWidth": 3, 30 | "rawHeight": 4, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bullet-2.png -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "36b9858b-0f7f-4b55-9e7c-c536b81b1a7c", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 4, 12 | "height": 3, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bullet-2": { 16 | "ver": "1.0.6", 17 | "uuid": "bbc775c8-538a-4224-9df3-f1fb6c697f4b", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "36b9858b-0f7f-4b55-9e7c-c536b81b1a7c", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 4, 28 | "height": 3, 29 | "rawWidth": 4, 30 | "rawHeight": 3, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bullet-3.png -------------------------------------------------------------------------------- /assets/textures/bullet/bullet-3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "f75ff4f1-8f5a-4395-ba27-59e8d54e6f81", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 3, 12 | "height": 4, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bullet-3": { 16 | "ver": "1.0.6", 17 | "uuid": "c43047d9-1705-4c4c-b7fc-b4fd0383fab5", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "f75ff4f1-8f5a-4395-ba27-59e8d54e6f81", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 3, 28 | "height": 4, 29 | "rawWidth": 3, 30 | "rawHeight": 4, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bumb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bumb0.png -------------------------------------------------------------------------------- /assets/textures/bullet/bumb0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "de64139c-8300-474b-996c-7432a78a4931", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bumb0": { 16 | "ver": "1.0.6", 17 | "uuid": "f4f96222-6b95-463d-a1cd-c6ded8a6e731", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "de64139c-8300-474b-996c-7432a78a4931", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 1.5, 25 | "trimX": 2, 26 | "trimY": 1, 27 | "width": 11, 28 | "height": 11, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bumb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bumb1.png -------------------------------------------------------------------------------- /assets/textures/bullet/bumb1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "d84c70df-8bd8-439a-8fee-22734669fa0e", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bumb1": { 16 | "ver": "1.0.6", 17 | "uuid": "e68ec425-5ca1-4f35-9e87-c567d59634e2", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "d84c70df-8bd8-439a-8fee-22734669fa0e", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 1.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/bullet/bumb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/bullet/bumb2.png -------------------------------------------------------------------------------- /assets/textures/bullet/bumb2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "8ebafea8-d6b0-4ca1-a1a8-90b7a5164485", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "bumb2": { 16 | "ver": "1.0.6", 17 | "uuid": "96c1bd1e-9819-4293-b71e-7e4e511607f2", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "8ebafea8-d6b0-4ca1-a1a8-90b7a5164485", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 16, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/gameover.png -------------------------------------------------------------------------------- /assets/textures/gameover.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "a2e1fdca-76d4-49a2-8b3c-cfdeb740c967", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 31, 12 | "height": 15, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "gameover": { 16 | "ver": "1.0.6", 17 | "uuid": "e1aab1ed-b5ca-49aa-ad82-2266124417d5", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "a2e1fdca-76d4-49a2-8b3c-cfdeb740c967", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 31, 28 | "height": 15, 29 | "rawWidth": 31, 30 | "rawHeight": 15, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/information.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "ea6a70e5-2752-409a-b529-48294f7ef1b7", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/information/1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/information/1P.png -------------------------------------------------------------------------------- /assets/textures/information/1P.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "39b58b9c-dfdc-446b-916d-27885d2fe0fe", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 14, 12 | "height": 7, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1P": { 16 | "ver": "1.0.6", 17 | "uuid": "2d1fa140-5a8a-44e8-8151-4209c79fb694", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "39b58b9c-dfdc-446b-916d-27885d2fe0fe", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 14, 28 | "height": 7, 29 | "rawWidth": 14, 30 | "rawHeight": 7, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/information/2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/information/2P.png -------------------------------------------------------------------------------- /assets/textures/information/2P.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "96a195b6-686c-45e5-ab1a-1341637d0bf2", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "bilinear", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 14, 12 | "height": 7, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "2P": { 16 | "ver": "1.0.6", 17 | "uuid": "167e2b47-8061-46cf-9466-8cd86fb23542", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "96a195b6-686c-45e5-ab1a-1341637d0bf2", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 14, 28 | "height": 7, 29 | "rawWidth": 14, 30 | "rawHeight": 7, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/information/enemytank-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/information/enemytank-ico.png -------------------------------------------------------------------------------- /assets/textures/information/enemytank-ico.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "f14dfcd9-87ea-4a4a-9543-51155d31b12d", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 7, 12 | "height": 7, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "enemytank-ico": { 16 | "ver": "1.0.6", 17 | "uuid": "922d5364-dd3a-4196-93d4-ea276dd1a64f", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "f14dfcd9-87ea-4a4a-9543-51155d31b12d", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 7, 28 | "height": 7, 29 | "rawWidth": 7, 30 | "rawHeight": 7, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/information/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/information/flag.png -------------------------------------------------------------------------------- /assets/textures/information/flag.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "a7b9c723-e929-4249-a5f5-2471e0aecf18", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 15, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "flag": { 16 | "ver": "1.0.6", 17 | "uuid": "eb6a2801-e02e-4b2b-bad2-a00883de76d9", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "a7b9c723-e929-4249-a5f5-2471e0aecf18", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 15, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/information/playertank-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/information/playertank-ico.png -------------------------------------------------------------------------------- /assets/textures/information/playertank-ico.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "01442341-5398-4567-9d34-a845b39ce6e1", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 7, 12 | "height": 8, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "playertank-ico": { 16 | "ver": "1.0.6", 17 | "uuid": "dbdcb365-ae78-460f-a37c-68c4fcf5e54e", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "01442341-5398-4567-9d34-a845b39ce6e1", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 7, 28 | "height": 8, 29 | "rawWidth": 7, 30 | "rawHeight": 8, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/prop.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "126d04e4-1a87-4501-8250-b0bcc9311843", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/prop/p0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/prop/p0.png -------------------------------------------------------------------------------- /assets/textures/prop/p0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "63a7223d-1ad4-44a3-bfc5-a21b0ab68bce", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "p0": { 16 | "ver": "1.0.6", 17 | "uuid": "a5c7719f-e1ca-49b3-bd1d-94c09c80f43e", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "63a7223d-1ad4-44a3-bfc5-a21b0ab68bce", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/prop/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/prop/p1.png -------------------------------------------------------------------------------- /assets/textures/prop/p1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "3b3ec705-190f-4022-963c-c54e8615ce14", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "p1": { 16 | "ver": "1.0.6", 17 | "uuid": "072ee822-7449-41a1-a87b-1eb3ef46c6b7", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "3b3ec705-190f-4022-963c-c54e8615ce14", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/prop/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/prop/p2.png -------------------------------------------------------------------------------- /assets/textures/prop/p2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "c20dbae2-d520-4c8a-ba72-0609b77a41dd", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "p2": { 16 | "ver": "1.0.6", 17 | "uuid": "636c614a-548f-40db-afca-63fd939d16a0", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "c20dbae2-d520-4c8a-ba72-0609b77a41dd", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/prop/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/prop/p3.png -------------------------------------------------------------------------------- /assets/textures/prop/p3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "fddaa7f4-7ed7-46f4-a73f-6c693161d73d", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "p3": { 16 | "ver": "1.0.6", 17 | "uuid": "251e1eb8-5ea4-40e7-8aab-2bd777e77fc0", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "fddaa7f4-7ed7-46f4-a73f-6c693161d73d", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/prop/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/prop/p4.png -------------------------------------------------------------------------------- /assets/textures/prop/p4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "b95ac5e0-b1db-479d-a609-026668c847ad", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "p4": { 16 | "ver": "1.0.6", 17 | "uuid": "71b979e9-3312-47e5-87dc-98f2c2d89877", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "b95ac5e0-b1db-479d-a609-026668c847ad", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/prop/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/prop/p5.png -------------------------------------------------------------------------------- /assets/textures/prop/p5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "6f28c7f6-0e09-4d0a-8132-0535cbb68d0c", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "p5": { 16 | "ver": "1.0.6", 17 | "uuid": "7264a5f0-af12-4a76-940c-b442e413d7a8", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "6f28c7f6-0e09-4d0a-8132-0535cbb68d0c", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/ring.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "c511d1b7-d06a-466f-b14c-82e9ff0883dc", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/ring/ring0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/ring/ring0.png -------------------------------------------------------------------------------- /assets/textures/ring/ring0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "fbc5197a-9602-4860-ab19-c6142edbf7e0", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "ring0": { 16 | "ver": "1.0.6", 17 | "uuid": "9086fb2c-a174-42d3-a7c7-255800381eef", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "fbc5197a-9602-4860-ab19-c6142edbf7e0", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 16, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/ring/ring1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/ring/ring1.png -------------------------------------------------------------------------------- /assets/textures/ring/ring1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "cc314eef-51a5-49b7-950d-641cd32f52b9", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "ring1": { 16 | "ver": "1.0.6", 17 | "uuid": "8f1ea4a7-a2fd-4ab5-80a3-b21f8c8f17e0", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "cc314eef-51a5-49b7-950d-641cd32f52b9", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 16, 28 | "height": 16, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/stage.png -------------------------------------------------------------------------------- /assets/textures/stage.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "8b2f15f8-0b5b-4c41-b094-005d1cfe9a90", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 39, 12 | "height": 7, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "stage": { 16 | "ver": "1.0.6", 17 | "uuid": "13eeebcb-3052-47bc-8b18-79cf988ca24c", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "8b2f15f8-0b5b-4c41-b094-005d1cfe9a90", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 39, 28 | "height": 7, 29 | "rawWidth": 39, 30 | "rawHeight": 7, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/star.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "cf68db2c-f224-425c-af4b-d34da693fb4a", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/star/star0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/star/star0.png -------------------------------------------------------------------------------- /assets/textures/star/star0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "38b05160-1bdc-461f-bf77-5f5deb7e6c81", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "star0": { 16 | "ver": "1.0.6", 17 | "uuid": "f127a2a2-6850-46c6-890e-e74bc795cb88", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "38b05160-1bdc-461f-bf77-5f5deb7e6c81", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 0.5, 25 | "trimX": 0, 26 | "trimY": 0, 27 | "width": 15, 28 | "height": 15, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/star/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/star/star1.png -------------------------------------------------------------------------------- /assets/textures/star/star1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "2db81c33-6a5e-4181-90d2-396004494f97", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "star1": { 16 | "ver": "1.0.6", 17 | "uuid": "c8c70766-555c-4b09-8a8a-af2e2c44e125", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "2db81c33-6a5e-4181-90d2-396004494f97", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 0.5, 25 | "trimX": 1, 26 | "trimY": 1, 27 | "width": 13, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/star/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/star/star2.png -------------------------------------------------------------------------------- /assets/textures/star/star2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4ad6a00a-9e24-40d3-b45f-de00a0a0bcd8", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "star2": { 16 | "ver": "1.0.6", 17 | "uuid": "2b7e2b14-7429-4fb2-8bf3-6be3385098f5", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4ad6a00a-9e24-40d3-b45f-de00a0a0bcd8", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 0.5, 25 | "trimX": 2, 26 | "trimY": 2, 27 | "width": 11, 28 | "height": 11, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/star/star3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/star/star3.png -------------------------------------------------------------------------------- /assets/textures/star/star3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "dacadd75-fe31-4804-9520-85e35e384622", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "star3": { 16 | "ver": "1.0.6", 17 | "uuid": "3c335925-4787-4230-875a-c4187e020b6c", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "dacadd75-fe31-4804-9520-85e35e384622", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 0.5, 25 | "trimX": 3, 26 | "trimY": 3, 27 | "width": 9, 28 | "height": 9, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "18dde505-b905-4a86-93d6-1ceb4d63dea1", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "d37684bc-52f0-4785-b646-30ff89e66d62", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "9dfe054f-2073-4f1d-b28c-398edfc0055b", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/1-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/1-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/1-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4aaf2ed1-ae4e-46ad-ad93-2d1ce81973a0", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "61912913-af03-4230-b795-2f5c1a7d1010", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4aaf2ed1-ae4e-46ad-ad93-2d1ce81973a0", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/1-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/1-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/1-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "df344b1a-cfdf-4f7e-a1ea-b6db4e96afbe", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "5100765c-ae1a-42b5-87f8-9d718bb09b9a", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "df344b1a-cfdf-4f7e-a1ea-b6db4e96afbe", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/2-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/2-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/2-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4fe4e17f-09ec-42a8-88a6-91bae3f7d3c9", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "2-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "fe66b37f-16b6-46ef-9c3d-667436642042", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4fe4e17f-09ec-42a8-88a6-91bae3f7d3c9", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/2-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/2-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/2-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "1679e3bf-271d-45cf-81c9-8e9c7df8d066", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "2-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "bb4edd52-7a29-486e-bacc-3aeff0c64894", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "1679e3bf-271d-45cf-81c9-8e9c7df8d066", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/3-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/3-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/3-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "0ae0b0c0-0d17-42ce-b552-f6b6d4a68685", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "3-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "83fea753-bafc-4aec-bcf9-6e6b093c0501", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "0ae0b0c0-0d17-42ce-b552-f6b6d4a68685", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/3-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/3-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/3-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "8507a53a-f662-412f-8406-381d2fc4ec88", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "3-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "a9185546-de29-4abb-84c9-553a836bd198", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "8507a53a-f662-412f-8406-381d2fc4ec88", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/4-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/4-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/4-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "45351c03-7da7-4fd9-986f-4c3258fce5d9", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "4-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "040e6bec-f55a-4b40-ac76-cab8af06a3ec", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "45351c03-7da7-4fd9-986f-4c3258fce5d9", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/4-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/4-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/4-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "1d61fea2-4095-4963-a237-0315cb152ca4", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "4-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "716a59eb-4298-4c3b-8038-86dac0f77fd3", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "1d61fea2-4095-4963-a237-0315cb152ca4", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/g4-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/g4-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/g4-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "4594ab0a-a524-41dc-a203-3d58647051a9", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "g4-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "1c565d86-997b-47a6-abe4-b286a0a72d49", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "4594ab0a-a524-41dc-a203-3d58647051a9", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/g4-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/g4-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/g4-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "dc38a1d1-4b76-4673-9420-b3418777d761", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "g4-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "639350e5-da25-482b-9b46-50fa8f3a267a", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "dc38a1d1-4b76-4673-9420-b3418777d761", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/y4-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/y4-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/y4-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "e41db8be-3aab-4b23-b4a4-c051285a4180", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "y4-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "24e13aa7-cef2-4e64-be76-e00ba2d7b625", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "e41db8be-3aab-4b23-b4a4-c051285a4180", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/y4-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/normal_tank/y4-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/normal_tank/y4-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "59817a17-68b9-4f0b-bf9e-031f92095446", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "y4-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "019c138a-e7e3-4780-8215-fbb98d0873f8", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "59817a17-68b9-4f0b-bf9e-031f92095446", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "bc9d3d5d-dac4-423b-906d-2369f88bc7f2", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-1-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "dce7cc03-c774-4fbf-8190-9b299c03dc0f", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "bilinear", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1-1-1": { 16 | "ver": "1.0.6", 17 | "uuid": "91f91531-68b6-4e7a-a57e-5cff9da4a5e2", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "dce7cc03-c774-4fbf-8190-9b299c03dc0f", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-1-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "8ac30f8c-06d6-4be2-842b-1d2a3694931d", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "bilinear", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1-1-2": { 16 | "ver": "1.0.6", 17 | "uuid": "63224367-0cb1-4d2b-a832-4b332dfc4c08", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "8ac30f8c-06d6-4be2-842b-1d2a3694931d", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1.5, 25 | "trimX": 1, 26 | "trimY": 3, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-2-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-2-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-3-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-3-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-4-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/1-4-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/1-4-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "d91a5cfa-600e-402e-b954-4adc5163bfa4", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "bilinear", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "1-4-2": { 16 | "ver": "1.0.6", 17 | "uuid": "446b9dc9-4064-4e6b-9caa-e7a1dc033713", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "d91a5cfa-600e-402e-b954-4adc5163bfa4", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": -0.5, 24 | "offsetY": 0, 25 | "trimX": 1, 26 | "trimY": 1, 27 | "width": 13, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-2-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-2-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-3-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-3-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-4-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/2-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/2-4-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-2-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-2-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-3-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-3-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-4-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/3-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/3-4-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-1-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-1-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-2-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-2-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-3-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-3-2.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-4-1.png -------------------------------------------------------------------------------- /assets/textures/tank/enemy_tank/prop_tank/4-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/enemy_tank/prop_tank/4-4-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "2b73619d-aedd-4901-95cc-cd5e29105917", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m0-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m0-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m0-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "e9010fb0-623f-4d94-9cc0-555d13bffc6a", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m0-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "de8e03b8-2027-4268-a0e8-e12574945c4a", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "e9010fb0-623f-4d94-9cc0-555d13bffc6a", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 2, 26 | "trimY": 2, 27 | "width": 13, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m0-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m0-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m0-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "b4d43429-bc31-41a3-827c-415ee7f577a1", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m0-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "50f15886-141c-4dfe-a088-8faa77c2b22e", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "b4d43429-bc31-41a3-827c-415ee7f577a1", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 2, 26 | "trimY": 2, 27 | "width": 13, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m1-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m1-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m1-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "a7c66502-64e1-4f77-b0b3-4f3fdebac1ac", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m1-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "c847ea2c-673b-40bc-ab1d-622280b630a6", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "a7c66502-64e1-4f77-b0b3-4f3fdebac1ac", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 16, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m1-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m1-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m1-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "d2c67c85-c455-4f5d-b2c5-3d7505ccaa41", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m1-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "3bb397c3-50af-4574-b9d7-964853df8f30", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "d2c67c85-c455-4f5d-b2c5-3d7505ccaa41", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 16, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m2-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m2-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m2-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "24fe509b-c26e-4859-ba7b-c9f326816ccd", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m2-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "109fbd18-36d1-46bd-b926-c9b1098f3f09", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "24fe509b-c26e-4859-ba7b-c9f326816ccd", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m2-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m2-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m2-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "ef92ad35-c191-460f-82dd-b6e9baff32d3", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m2-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "8b87c25b-fbba-4e2c-9e8d-5f4aff462da2", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "ef92ad35-c191-460f-82dd-b6e9baff32d3", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m3-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m3-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m3-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "8397cf40-4c8b-4e78-9070-6c60cf25ab77", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m3-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "6d9b6126-eb90-49da-954a-7f8882cdd416", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "8397cf40-4c8b-4e78-9070-6c60cf25ab77", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m3-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player1_tank/m3-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player1_tank/m3-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "f6cdabaa-9385-4613-9b2a-f949ae7e9fa5", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m3-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "ac657ccf-2e3f-440f-afea-68922d2a2fa0", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "f6cdabaa-9385-4613-9b2a-f949ae7e9fa5", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "3b158e11-0fda-4348-925b-56875366e09d", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m0-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m0-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m0-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "1e62efd2-affa-4b2c-bfd0-b1b6591c5aec", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m0-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "6070747d-a01b-4c53-8359-90a41bb5f772", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "1e62efd2-affa-4b2c-bfd0-b1b6591c5aec", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 2, 26 | "trimY": 2, 27 | "width": 13, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m0-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m0-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m0-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "ef231959-037d-49fd-94e2-24c83195b35b", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m0-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "ec952e90-2cc5-4c57-9968-140f7ed4be67", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "ef231959-037d-49fd-94e2-24c83195b35b", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 2, 26 | "trimY": 2, 27 | "width": 13, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m1-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m1-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m1-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "ec0c3989-0ff0-40f4-aa1f-7341e5f355fb", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m1-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "3932147f-50f4-46a6-bfd2-210197e67957", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "ec0c3989-0ff0-40f4-aa1f-7341e5f355fb", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 16, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m1-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m1-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m1-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "b2b65127-d8d9-41eb-9a25-63660ff55ede", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m1-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "5399bf66-71ed-4be3-836d-0409b7c073c4", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "b2b65127-d8d9-41eb-9a25-63660ff55ede", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": -0.5, 25 | "trimX": 0, 26 | "trimY": 2, 27 | "width": 16, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m2-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m2-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m2-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "2e7eea91-a7b7-4c8b-9051-eb17e6451dd0", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m2-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "53f9140e-64b0-4c87-a00a-2fde16a39710", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "2e7eea91-a7b7-4c8b-9051-eb17e6451dd0", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m2-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m2-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m2-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "f51fcb88-c7a1-4572-bc31-4a1519ff0d84", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m2-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "4738bd25-2a40-4d4e-a4ab-7b3c599be9cf", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "f51fcb88-c7a1-4572-bc31-4a1519ff0d84", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -0.5, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 13, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m3-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m3-0-1.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m3-0-1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "2bf3b422-d851-4a68-abec-398941df28e8", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m3-0-1": { 16 | "ver": "1.0.6", 17 | "uuid": "b60ccb15-252e-43ef-a541-951b68a3f492", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "2bf3b422-d851-4a68-abec-398941df28e8", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m3-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/tank/player2_tank/m3-0-2.png -------------------------------------------------------------------------------- /assets/textures/tank/player2_tank/m3-0-2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "7c48386c-0402-4fc0-aa0a-0682200b64e9", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 16, 12 | "height": 16, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "m3-0-2": { 16 | "ver": "1.0.6", 17 | "uuid": "75edeb76-7f5f-4bd1-a8e5-10e79545fe30", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "7c48386c-0402-4fc0-aa0a-0682200b64e9", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0.5, 24 | "offsetY": -1, 25 | "trimX": 1, 26 | "trimY": 2, 27 | "width": 15, 28 | "height": 14, 29 | "rawWidth": 16, 30 | "rawHeight": 16, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/touch_button.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.3", 3 | "uuid": "a22e7fad-0bcd-453a-886c-623d55e422f1", 4 | "importer": "folder", 5 | "isBundle": false, 6 | "bundleName": "", 7 | "priority": 1, 8 | "compressionType": {}, 9 | "optimizeHotUpdate": {}, 10 | "inlineSpriteFrames": {}, 11 | "isRemoteBundle": {}, 12 | "subMetas": {} 13 | } -------------------------------------------------------------------------------- /assets/textures/touch_button/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/touch_button/move_down.png -------------------------------------------------------------------------------- /assets/textures/touch_button/move_down.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "2718af48-663c-4faa-ae94-0ad72417e40f", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "move_down": { 16 | "ver": "1.0.6", 17 | "uuid": "89c11ed7-456f-4415-a18b-a35ad09f9b14", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "2718af48-663c-4faa-ae94-0ad72417e40f", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 1, 26 | "trimY": 1, 27 | "width": 30, 28 | "height": 30, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/touch_button/move_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/touch_button/move_left.png -------------------------------------------------------------------------------- /assets/textures/touch_button/move_left.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "9464dc88-884f-430a-88f6-5e5d57d59389", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "move_left": { 16 | "ver": "1.0.6", 17 | "uuid": "89e34850-1257-49e4-9da9-4185c65c14cf", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "9464dc88-884f-430a-88f6-5e5d57d59389", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 1, 26 | "trimY": 1, 27 | "width": 30, 28 | "height": 30, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/touch_button/move_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/touch_button/move_right.png -------------------------------------------------------------------------------- /assets/textures/touch_button/move_right.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "dc9150bd-2a2a-4612-a22b-95b7b9382de1", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "move_right": { 16 | "ver": "1.0.6", 17 | "uuid": "5c28b2a7-c1bf-40d6-81a4-f8ac4fbbb479", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "dc9150bd-2a2a-4612-a22b-95b7b9382de1", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 1, 26 | "trimY": 1, 27 | "width": 30, 28 | "height": 30, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /assets/textures/touch_button/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocfbnj/CocosCreatorTank/4c074942d7a0ad11f76c9c38af40ab7d3faadd25/assets/textures/touch_button/move_up.png -------------------------------------------------------------------------------- /assets/textures/touch_button/move_up.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.7", 3 | "uuid": "17900398-56f4-4d4c-a09b-f0de718ca95f", 4 | "importer": "texture", 5 | "type": "sprite", 6 | "wrapMode": "clamp", 7 | "filterMode": "point", 8 | "premultiplyAlpha": false, 9 | "genMipmaps": false, 10 | "packable": true, 11 | "width": 32, 12 | "height": 32, 13 | "platformSettings": {}, 14 | "subMetas": { 15 | "move_up": { 16 | "ver": "1.0.6", 17 | "uuid": "36f3e0a2-c460-4a49-9848-d96f824ecb87", 18 | "importer": "sprite-frame", 19 | "rawTextureUuid": "17900398-56f4-4d4c-a09b-f0de718ca95f", 20 | "trimType": "auto", 21 | "trimThreshold": 1, 22 | "rotated": false, 23 | "offsetX": 0, 24 | "offsetY": 0, 25 | "trimX": 1, 26 | "trimY": 1, 27 | "width": 30, 28 | "height": 30, 29 | "rawWidth": 32, 30 | "rawHeight": 32, 31 | "borderTop": 0, 32 | "borderBottom": 0, 33 | "borderLeft": 0, 34 | "borderRight": 0, 35 | "subMetas": {} 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "experimentalDecorators": true 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | ".vscode", 10 | "library", 11 | "local", 12 | "settings", 13 | "temp" 14 | ] 15 | } -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos-creator-js", 3 | "packages": "packages", 4 | "name": "CocosTank", 5 | "uuid": "764375eb-5413-43da-8d6c-ea5aa2663ac6", 6 | "version": "2.4.6", 7 | "id": "4a2ad2a8-62ed-4fbe-af30-03c9c01d8132", 8 | "isNew": false 9 | } -------------------------------------------------------------------------------- /settings/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "migrate-history": [ 3 | "cloud-function" 4 | ], 5 | "last-module-event-record-time": 1628078425375 6 | } 7 | -------------------------------------------------------------------------------- /settings/services.json: -------------------------------------------------------------------------------- 1 | { 2 | "game": { 3 | "name": "未知游戏", 4 | "appid": "UNKNOW" 5 | } 6 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "lib": [ "es2015", "es2017", "dom" ], 5 | "target": "es5", 6 | "experimentalDecorators": true, 7 | "skipLibCheck": true, 8 | "outDir": "temp/vscode-dist", 9 | "forceConsistentCasingInFileNames": true 10 | }, 11 | "exclude": [ 12 | "node_modules", 13 | "library", 14 | "local", 15 | "temp", 16 | "build", 17 | "settings" 18 | ] 19 | } --------------------------------------------------------------------------------