This commit is contained in:
wassname
2019-01-16 11:28:27 +08:00
parent 23bd2196e0
commit 407c33f3b2
3 changed files with 4 additions and 5 deletions
+3 -3
View File
@@ -25,17 +25,17 @@
"env"
]
},
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"display": "webpack-dev-server -d",
"train": "./node_modules/.bin/babel-node --max-old-space-size=16192 scripts/train | tee outputs/train_$(date +\"%Y-%m-%d_%H-%M-%S\").log"
"train": "./node_modules/.bin/babel-node --max-old-space-size=16192 scripts/train | tee outputs/train_$(date +\"%Y-%m-%d_%H-%M-%S\").log",
"build": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wassname/rl_2d_walker.js.git"
},
"author": "",
"author": "wassname",
"license": "ISC",
"bugs": {
"url": "https://github.com/wassname/rl_2d_walker.js/issues"
-1
View File
@@ -3,5 +3,4 @@ window.b2 = require('./vendor/jsbox2d')
window.config = require('./js/config')
window.chooseQoute = chooseQoute
window.Game = Game
export {Game}
+1 -1
View File
@@ -1,7 +1,7 @@
let config = {
time_step: 60,
simulation_fps: 60,
draw_fps: 0,
draw_fps: 30,
velocity_iterations: 8,
position_iterations: 3,
max_zoom_factor: 130,