mirror of
https://github.com/wassname/rl_2d_walker.js.git
synced 2026-09-21 13:20:06 +08:00
14 lines
249 B
JavaScript
14 lines
249 B
JavaScript
module.exports = {
|
|
time_step: 120,
|
|
draw_fps: 60,
|
|
velocity_iterations: 10,
|
|
position_iterations: 6,
|
|
max_zoom_factor: 130,
|
|
population_size: 1,
|
|
walker_health: 100,
|
|
max_floor_tiles: 50,
|
|
action_repeat: 1,
|
|
STRENGTH: 2.2,
|
|
SPEED: 30
|
|
};
|