diff options
Diffstat (limited to 'public/js/app.js')
-rw-r--r-- | public/js/app.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/public/js/app.js b/public/js/app.js index fdf81e7..746c558 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1,9 +1,9 @@ class Component { constructor(radius, color, x, y, direction) { - this.rayLength = 100; - this.turnStepAmount = 0; - this.stepAmount = 5; + this.rayLength = 40; + this.turnStepAmount = 4; + this.stepAmount = 3; this.radius = radius; this.x = x; this.y = y; @@ -221,7 +221,7 @@ class Scene { } -let scene = new Scene(10, 100); +let scene = new Scene(5, 100); function stop() { scene.stop(); |