[client] add android build

This commit is contained in:
2019-08-23 14:57:12 +03:00
parent 00cd404a98
commit f072d8dc6e
3 changed files with 5 additions and 5 deletions

View File

@@ -96,7 +96,7 @@ const client = new Project(
], ],
meta: { meta: {
width: 1024, width: 1024,
height: 768, height: 576,
}, },
flags: [ flags: [
//'proto_debug', //'proto_debug',
@@ -166,7 +166,7 @@ module.exports.default = gulp.series(
module.exports['client:html5:build'], module.exports['client:html5:build'],
module.exports['client:linux:build'], module.exports['client:linux:build'],
module.exports['client:linux:deb'], module.exports['client:linux:deb'],
//module.exports['client:android:build'], module.exports['client:android:build'],
module.exports['editor:flash:build'], module.exports['editor:flash:build'],
module.exports['editor:flash:html'], module.exports['editor:flash:html'],

View File

@@ -1,6 +1,6 @@
{ {
"name": "tankz", "name": "tankz",
"version": "0.16.7", "version": "0.16.8",
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"dateformat": "^3.0.3", "dateformat": "^3.0.3",
@@ -8,7 +8,7 @@
"gulp-add": "0.0.2", "gulp-add": "0.0.2",
"gulp-clean": "^0.4.0", "gulp-clean": "^0.4.0",
"gulp-foreach": "^0.1.0", "gulp-foreach": "^0.1.0",
"gulp-haxetool": "0.0.20", "gulp-haxetool": "0.0.21",
"gulp-zip": "^5.0.0", "gulp-zip": "^5.0.0",
"yargs": "^13.2.4" "yargs": "^13.2.4"
}, },

View File

@@ -74,7 +74,7 @@ class SettingsStorage extends SharedObjectStorage {
MOVE(Direction.RIGHT) => {device: KEYBOARD, action: KEY(Keyboard.RIGHT)}, MOVE(Direction.RIGHT) => {device: KEYBOARD, action: KEY(Keyboard.RIGHT)},
SHOT(0) => {device: KEYBOARD, action: KEY(Keyboard.NUMPAD_0)}, SHOT(0) => {device: KEYBOARD, action: KEY(Keyboard.NUMPAD_0)},
SHOT(1) => {device: KEYBOARD, action: KEY(Keyboard.NUMPAD_1)}, SHOT(1) => {device: KEYBOARD, action: KEY(Keyboard.NUMPAD_1)},
SHOT(3) => {device: KEYBOARD, action: KEY(Keyboard.NUMPAD_2)}, SHOT(2) => {device: KEYBOARD, action: KEY(Keyboard.NUMPAD_2)},
], ],
]; ];
} }