From 4ef0750c071323f95283c91a162e2132c92790c1 Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Fri, 24 May 2013 01:40:56 +0100 Subject: [PATCH] Prep before branch --- Phaser/geom/Vector2.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Phaser/geom/Vector2.ts b/Phaser/geom/Vector2.ts index 51d946089..0d582ed7d 100644 --- a/Phaser/geom/Vector2.ts +++ b/Phaser/geom/Vector2.ts @@ -4,7 +4,7 @@ * Phaser - Vector2 * * A two dimensional vector. -* Contains methods and ideas from verlet-js by Sub Protocol, SAT.js by Jim Riecken and N by Metanet Software. +* Contains methods and ideas from verlet-js by Sub Protocol, SAT.js by Jim Riecken and N by Metanet Software. Brandon Jones, Colin MacKenzie IV */ module Phaser { @@ -21,6 +21,7 @@ module Phaser { **/ constructor(x: number = 0, y: number = 0) { + //var GLMAT_ARRAY_TYPE = (typeof Float32Array !== 'undefined') ? Float32Array : Array; this.x = x; this.y = y;