Jump to content

addMoveCallback for sprite is very slow in Phaser.WebGL


mtkachenko
 Share

Recommended Posts

I use chrome. I added move callback for sprite like this

game.input.addMoveCallback(function(pointer, x, y) {
		if(currentTile){
			currentTile.x = x;
			currentTile.y = y;
		}
	});

Initially game has setting Phaser.AUTO and it was very slow. Then I found out it's slow in Phaser.WebGL mode and works ok in Phaser.CANVAS. Why?

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...