mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
Fixed pixel perfect dragging, this was still using the old property 'pixelPerfect' instead of the new 'pixelPerfectClick'
This commit is contained in:
parent
d7bed24a27
commit
8a1c1db8d9
1 changed files with 1 additions and 1 deletions
|
@ -1133,7 +1133,7 @@ Phaser.InputHandler.prototype = {
|
|||
this.dragOffset = new Phaser.Point();
|
||||
this.dragFromCenter = lockCenter;
|
||||
|
||||
this.pixelPerfect = pixelPerfect;
|
||||
this.pixelPerfectClick = pixelPerfect;
|
||||
this.pixelPerfectAlpha = alphaThreshold;
|
||||
|
||||
if (boundsRect)
|
||||
|
|
Loading…
Reference in a new issue