├── README.md ├── filters └── gray.frag ├── game.js ├── game.json ├── images ├── bg │ └── field_1920.png └── spritesheet │ └── shooter.png ├── index.html ├── js ├── libs │ ├── gamelibs │ │ ├── p2.min.js │ │ ├── phaser-split.min.js │ │ └── pixi.min.js │ ├── symbol.js │ └── weapp-adapter.js └── main.js └── project.config.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/README.md -------------------------------------------------------------------------------- /filters/gray.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/filters/gray.frag -------------------------------------------------------------------------------- /game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/game.js -------------------------------------------------------------------------------- /game.json: -------------------------------------------------------------------------------- 1 | { 2 | "deviceOrientation": "landscape" 3 | } 4 | -------------------------------------------------------------------------------- /images/bg/field_1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/images/bg/field_1920.png -------------------------------------------------------------------------------- /images/spritesheet/shooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/images/spritesheet/shooter.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/index.html -------------------------------------------------------------------------------- /js/libs/gamelibs/p2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/js/libs/gamelibs/p2.min.js -------------------------------------------------------------------------------- /js/libs/gamelibs/phaser-split.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/js/libs/gamelibs/phaser-split.min.js -------------------------------------------------------------------------------- /js/libs/gamelibs/pixi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/js/libs/gamelibs/pixi.min.js -------------------------------------------------------------------------------- /js/libs/symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/js/libs/symbol.js -------------------------------------------------------------------------------- /js/libs/weapp-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/js/libs/weapp-adapter.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/js/main.js -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-phaser/HEAD/project.config.json --------------------------------------------------------------------------------