mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 15:14:47 +00:00
Prep before branch
This commit is contained in:
parent
67bf221073
commit
4ef0750c07
1 changed files with 2 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
* Phaser - Vector2
|
* Phaser - Vector2
|
||||||
*
|
*
|
||||||
* A two dimensional vector.
|
* 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 {
|
module Phaser {
|
||||||
|
@ -21,6 +21,7 @@ module Phaser {
|
||||||
**/
|
**/
|
||||||
constructor(x: number = 0, y: number = 0) {
|
constructor(x: number = 0, y: number = 0) {
|
||||||
|
|
||||||
|
//var GLMAT_ARRAY_TYPE = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
|
||||||
this.x = x;
|
this.x = x;
|
||||||
this.y = y;
|
this.y = y;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue