From 6583ea179136416c6654e1b920673322cdb2b8e7 Mon Sep 17 00:00:00 2001 From: Seiji Emery Date: Thu, 27 Aug 2015 13:08:19 -0700 Subject: [PATCH] Reverted default entity type back to spheres --- examples/example/entities/platform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example/entities/platform.js b/examples/example/entities/platform.js index 9cd6687a10..0aeb80e98f 100644 --- a/examples/example/entities/platform.js +++ b/examples/example/entities/platform.js @@ -476,7 +476,7 @@ var UI_SHAPE_DIMENSIONS_RANGE = [ 0.001, 2.0 ]; // axis-aligned entity dimension this.position = position; this.radius = radius; this.randomizer = new RandomAttribModel(); - this.boxType = "Sphere"; + this.boxType = "Box"; this.boxTypes = [ "Box", "Sphere" ]; // logMessage("Spawning " + n + " entities", COLORS.GREEN);