Bitmap:setAnchorPoint

From GiderosMobile
Revision as of 11:02, 23 August 2018 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Sets the anchor point of `Bitmap` object. <br /> <br /> Each `Bitmap` object has an anchor poin...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2011.6

Description


Sets the anchor point of `Bitmap` object.

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.

= Bitmap:setAnchorPoint(xy,)

'x: (number) The x coordinate of anchor point. Usually between [0, 1]. '
'y: (number) The y coordinate of anchor point. Usually between [0, 1]. '