Updated all the examples to use the new Debug methods.

This commit is contained in:
photonstorm
2014-03-03 01:19:31 +00:00
parent c4a68e3e87
commit 61376093fd
206 changed files with 553 additions and 572 deletions
+3 -3
View File
@@ -34,8 +34,8 @@ function update()
function render() {
// Input debug info
game.debug.renderInputInfo(32, 32);
game.debug.renderSpriteInputInfo(sprite, 32, 130);
game.debug.renderPointer( game.input.activePointer );
game.debug.inputInfo(32, 32);
game.debug.spriteInputInfo(sprite, 32, 130);
game.debug.pointer( game.input.activePointer );
}