From 5f913fc7b383ed51e219bf92914d8893c61d6621 Mon Sep 17 00:00:00 2001 From: jiannibang Date: Mon, 24 Aug 2020 15:27:41 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Game.vue | 4 +- games/game-ballmove/scenes/PlayScene.js | 12 - games/game-flipbird/assets/flipbird/bg.png | Bin 0 -> 4576 bytes .../game-flipbird/assets/flipbird/clumsy.png | Bin 0 -> 2163 bytes .../game-flipbird/assets/flipbird/favicon.ico | Bin 0 -> 32038 bytes .../assets/flipbird/gameover.png | Bin 0 -> 2749 bytes .../assets/flipbird/gameoverbg.png | Bin 0 -> 1983 bytes .../assets/flipbird/getready.png | Bin 0 -> 2925 bytes .../game-flipbird/assets/flipbird/ground.png | Bin 0 -> 1612 bytes games/game-flipbird/assets/flipbird/hit.png | Bin 0 -> 1028 bytes games/game-flipbird/assets/flipbird/logo.png | Bin 0 -> 20284 bytes games/game-flipbird/assets/flipbird/new.png | Bin 0 -> 2196 bytes games/game-flipbird/assets/flipbird/pipe.png | Bin 0 -> 23851 bytes games/game-flipbird/assets/flipbird/share.png | Bin 0 -> 8631 bytes games/game-flipbird/assets/flipbird/start.png | Bin 0 -> 31334 bytes .../flipbird/touch-icon-iphone-retina.png | Bin 0 -> 1265 bytes .../assets/flipbird/touch-icon-iphone.png | Bin 0 -> 997 bytes games/game-flipbird/assets/flipbird/tweet.png | Bin 0 -> 6704 bytes games/game-flipbird/game.js | 32 ++ games/game-flipbird/scenes/BootScene.js | 17 + .../game-flipbird/scenes/flipbird/GameOver.js | 51 ++ .../game-flipbird/scenes/flipbird/flipbird.js | 165 ++++++ .../scenes/flipbird/startScene.js | 52 ++ games/game2048/assets/fonts/font.fnt | 20 + games/game2048/assets/fonts/font.png | Bin 0 -> 7831 bytes games/game2048/assets/images/2048.png | Bin 0 -> 1539 bytes games/game2048/assets/images/bg.png | Bin 0 -> 476 bytes games/game2048/assets/images/btn-start.png | Bin 0 -> 12234 bytes games/game2048/assets/images/list.png | Bin 0 -> 2133 bytes games/game2048/assets/images/timg.jpeg | Bin 0 -> 38884 bytes games/game2048/assets/sounds/grow.mp3 | Bin 0 -> 10866 bytes games/game2048/assets/sounds/grow.ogg | Bin 0 -> 14524 bytes games/game2048/assets/sounds/move.mp3 | Bin 0 -> 2506 bytes games/game2048/assets/sounds/move.ogg | Bin 0 -> 6506 bytes games/game2048/assets/sprites/restart.png | Bin 0 -> 1728 bytes games/game2048/assets/sprites/score.png | Bin 0 -> 1528 bytes games/game2048/assets/sprites/score_best.png | Bin 0 -> 1799 bytes .../game2048/assets/sprites/tile_default.png | Bin 0 -> 15204 bytes games/game2048/assets/sprites/tiles125.png | Bin 0 -> 100308 bytes games/game2048/assets/sprites/tiles2x.png | Bin 0 -> 142777 bytes games/game2048/assets/sprites/tilessmall.png | Bin 0 -> 46473 bytes games/game2048/constant/index.js | 6 + games/game2048/game.js | 34 ++ games/game2048/scenes/PlayScene.js | 520 ++++++++++++++++++ 44 files changed, 900 insertions(+), 13 deletions(-) create mode 100644 games/game-flipbird/assets/flipbird/bg.png create mode 100644 games/game-flipbird/assets/flipbird/clumsy.png create mode 100644 games/game-flipbird/assets/flipbird/favicon.ico create mode 100644 games/game-flipbird/assets/flipbird/gameover.png create mode 100644 games/game-flipbird/assets/flipbird/gameoverbg.png create mode 100644 games/game-flipbird/assets/flipbird/getready.png create mode 100644 games/game-flipbird/assets/flipbird/ground.png create mode 100644 games/game-flipbird/assets/flipbird/hit.png create mode 100644 games/game-flipbird/assets/flipbird/logo.png create mode 100644 games/game-flipbird/assets/flipbird/new.png create mode 100644 games/game-flipbird/assets/flipbird/pipe.png create mode 100644 games/game-flipbird/assets/flipbird/share.png create mode 100644 games/game-flipbird/assets/flipbird/start.png create mode 100644 games/game-flipbird/assets/flipbird/touch-icon-iphone-retina.png create mode 100644 games/game-flipbird/assets/flipbird/touch-icon-iphone.png create mode 100644 games/game-flipbird/assets/flipbird/tweet.png create mode 100644 games/game-flipbird/game.js create mode 100644 games/game-flipbird/scenes/BootScene.js create mode 100644 games/game-flipbird/scenes/flipbird/GameOver.js create mode 100644 games/game-flipbird/scenes/flipbird/flipbird.js create mode 100644 games/game-flipbird/scenes/flipbird/startScene.js create mode 100644 games/game2048/assets/fonts/font.fnt create mode 100644 games/game2048/assets/fonts/font.png create mode 100644 games/game2048/assets/images/2048.png create mode 100644 games/game2048/assets/images/bg.png create mode 100644 games/game2048/assets/images/btn-start.png create mode 100644 games/game2048/assets/images/list.png create mode 100644 games/game2048/assets/images/timg.jpeg create mode 100644 games/game2048/assets/sounds/grow.mp3 create mode 100644 games/game2048/assets/sounds/grow.ogg create mode 100644 games/game2048/assets/sounds/move.mp3 create mode 100644 games/game2048/assets/sounds/move.ogg create mode 100644 games/game2048/assets/sprites/restart.png create mode 100644 games/game2048/assets/sprites/score.png create mode 100644 games/game2048/assets/sprites/score_best.png create mode 100644 games/game2048/assets/sprites/tile_default.png create mode 100644 games/game2048/assets/sprites/tiles125.png create mode 100644 games/game2048/assets/sprites/tiles2x.png create mode 100644 games/game2048/assets/sprites/tilessmall.png create mode 100644 games/game2048/constant/index.js create mode 100644 games/game2048/game.js create mode 100644 games/game2048/scenes/PlayScene.js diff --git a/Game.vue b/Game.vue index f91ba2a..5aa9a36 100644 --- a/Game.vue +++ b/Game.vue @@ -3,7 +3,9 @@