We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67bf221 commit 4ef0750Copy full SHA for 4ef0750
1 file changed
Phaser/geom/Vector2.ts
@@ -4,7 +4,7 @@
4
* Phaser - Vector2
5
*
6
* 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.
+* 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
8
*/
9
10
module Phaser {
@@ -21,6 +21,7 @@ module Phaser {
21
**/
22
constructor(x: number = 0, y: number = 0) {
23
24
+ //var GLMAT_ARRAY_TYPE = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
25
this.x = x;
26
this.y = y;
27
0 commit comments