phaser/src/input/CreatePixelPerfectHandler.js

31 lines
1 KiB
JavaScript
Raw Normal View History

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
2018-06-08 17:24:08 +00:00
* Creates a new Pixel Perfect Handler function.
*
2018-06-08 17:24:08 +00:00
* Access via `InputPlugin.makePixelPerfect` rather than calling it directly.
*
* @function Phaser.Input.CreatePixelPerfectHandler
* @since 3.10.0
*
2018-06-08 17:24:08 +00:00
* @param {Phaser.Textures.TextureManager} textureManager - A reference to the Texture Manager.
* @param {integer} alphaTolerance - The alpha level that the pixel should be above to be included as a successful interaction.
*
2018-06-08 17:24:08 +00:00
* @return {function} The new Pixel Perfect Handler function.
*/
var CreatePixelPerfectHandler = function (textureManager, alphaTolerance)
{
return function (hitArea, x, y, gameObject)
{
var alpha = textureManager.getPixelAlpha(x, y, gameObject.texture.key, gameObject.frame.key);
2018-06-08 17:24:08 +00:00
return (alpha && alpha >= alphaTolerance);
};
};
module.exports = CreatePixelPerfectHandler;