A bitmap mask used for pixel-perfect collision.
Example usage:
class Object extends Entity
{
public function new()
{
super();
var sprite = new Image("myimage.png", 100, 100);
graphic = sprite;
mask = new Imagemask(sprite);
}
}
Remember to call "mask.update()" when you update the image.
If you are using RenderMode.HARDWARE
mode, Imagemask will still work, but only if your
Image source is created with a Texture. AtlasData
is not currently
supported.
Constructor
View source
Parameters:
Constructor.
Parameters:
source | The image to use as a mask. | |
x | X offset of the mask. | |
y | Y offset of the mask. |
Functions
View source
Returns:
Calculates the bound box of the source Image, taking account the Image transformation.
Returns:
the bound box in local coordinates.
View source
Parameters:
setSource (newsource : Image) : Void
Update Source image. Calls update().
Parameters:
newsource | Update source image. |