summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--game.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/game.ts b/game.ts
index 6ee4c70..ecb9367 100644
--- a/game.ts
+++ b/game.ts
@@ -507,7 +507,7 @@ class Level extends Physijs.Scene {
let groundGeometry = new THREE.BoxGeometry(1200, 1, 1200);
this.ground = new Physijs.BoxMesh(groundGeometry, Level.mat, 0);
this.add(this.ground);
- }231
+ }
random(start?:number, range?:number):Vector3 {
let a = Math.random() > 0.5 ? -1 : 1;