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 -1
View File
@@ -957,7 +957,9 @@ Phaser.BitmapData.prototype = {
}
}
};
Phaser.BitmapData.prototype.constructor = Phaser.BitmapData;
// EaselJS Tiny API emulation
+3 -1
View File
@@ -73,4 +73,6 @@ Phaser.Events.prototype = {
}
};
};
Phaser.Events.prototype.constructor = Phaser.Events;
+3 -1
View File
@@ -318,4 +318,6 @@ Phaser.GameObjectFactory.prototype = {
}
};
};
Phaser.GameObjectFactory.prototype.constructor = Phaser.GameObjectFactory;