Skip to content

Commit 4ef0750

Browse files
committed
Prep before branch
1 parent 67bf221 commit 4ef0750

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Phaser/geom/Vector2.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Phaser - Vector2
55
*
66
* A two dimensional vector.
7-
* Contains methods and ideas from verlet-js by Sub Protocol, SAT.js by Jim Riecken and N by Metanet Software.
7+
* 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
88
*/
99

1010
module Phaser {
@@ -21,6 +21,7 @@ module Phaser {
2121
**/
2222
constructor(x: number = 0, y: number = 0) {
2323

24+
//var GLMAT_ARRAY_TYPE = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
2425
this.x = x;
2526
this.y = y;
2627

0 commit comments

Comments
 (0)