mirror of
https://github.com/wassname/phaser.git
synced 2026-07-26 13:27:43 +08:00
Added class constructors, fixed Stripshader, added relative Tween example and updated Tween source.
This commit is contained in:
+3
-3
@@ -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
|
||||
|
||||
@@ -263,3 +263,5 @@ Phaser.QuadTree.prototype = {
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Phaser.QuadTree.prototype.constructor = Phaser.QuadTree;
|
||||
|
||||
@@ -245,3 +245,5 @@ Phaser.RandomDataGenerator.prototype = {
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Phaser.RandomDataGenerator.prototype.constructor = Phaser.RandomDataGenerator;
|
||||
|
||||
Reference in New Issue
Block a user