Bitmap:setAnchorPoint

From GiderosMobile

Available since: Gideros 2011.6
Class: Bitmap

Description

Sets the anchor point of a Bitmap object.

Bitmap:setAnchorPoint(x,y)

Each Bitmap object has an anchor point that affects the positioning of the texture displayed. By modifying the anchor point, you change the origin of the texture. For example, setting the anchor point to (0.5, 0.5) moves the center of the texture to the origin. If you set the anchor point to (1, 1) instead, the bottom-right corner of the texture will be the origin. The default value of anchor point is (0, 0) which means top-left of the texture is the origin by default.

Parameters

x: (number) the x coordinate of anchor point, usually between [0, 1]
y: (number) the y coordinate of anchor point, usually between [0, 1]