DebugUtils converted, re-name spaced the Input classes and started on Camera culling.

This commit is contained in:
Richard Davey
2013-08-31 21:50:34 +01:00
parent 70ee753859
commit 22847f6ade
17 changed files with 1736 additions and 359 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
* http://www.html5rocks.com/en/mobile/touchandmouse/
* Note: Android 2.x only supports 1 touch event at once, no multi-touch
*/
Phaser.Input.Touch = function (game) {
Phaser.Touch = function (game) {
this.game = game;
this.callbackContext = this.game;
@@ -21,7 +21,7 @@ Phaser.Input.Touch = function (game) {
};
Phaser.Input.Touch.prototype = {
Phaser.Touch.prototype = {
game: null,