phaser-ce-plugins icon indicating copy to clipboard operation
phaser-ce-plugins copied to clipboard

VirtualJoystick can not support multi-touch

Open henryboss opened this issue 8 years ago • 0 comments

Phaser.Plugin.VirtualJoystick.prototype.move = function (pointer, x, y) {

if (!this.isDragging || this.pointer != pointer)  // this should be add this.pointer !=pointer
{
	return;
}
    ....

} is it right ?

henryboss avatar Dec 06 '17 03:12 henryboss