Added class constructors, fixed Stripshader, added relative Tween example and updated Tween source.

This commit is contained in:
photonstorm
2013-12-30 16:54:00 +00:00
parent fdbdd81b7b
commit ce4cf531d4
59 changed files with 324 additions and 149 deletions
+3 -3
View File
@@ -688,7 +688,7 @@ Phaser.Math = {
},
/**
* Description.
* A Linear Interpolation Method, mostly used by Phaser.Tween.
* @method Phaser.Math#linearInterpolation
* @param {number} v
* @param {number} k
@@ -715,7 +715,7 @@ Phaser.Math = {
},
/**
* Description.
* A Bezier Interpolation Method, mostly used by Phaser.Tween.
* @method Phaser.Math#bezierInterpolation
* @param {number} v
* @param {number} k
@@ -736,7 +736,7 @@ Phaser.Math = {
},
/**
* Description.
* A Catmull Rom Interpolation Method, mostly used by Phaser.Tween.
* @method Phaser.Math#catmullRomInterpolation
* @param {number} v
* @param {number} k
+2
View File
@@ -263,3 +263,5 @@ Phaser.QuadTree.prototype = {
}
};
Phaser.QuadTree.prototype.constructor = Phaser.QuadTree;
+2
View File
@@ -245,3 +245,5 @@ Phaser.RandomDataGenerator.prototype = {
}
};
Phaser.RandomDataGenerator.prototype.constructor = Phaser.RandomDataGenerator;