Difference between revisions of "Bitmap:setAnchorPoint"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Available since:''' Gideros 2011.6<br/>
+
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
=== Description ===
+
=== <translate>Description</translate> ===
 
<translate><br />
 
<translate><br />
 
Sets the anchor point of [[Special:MyLanguage/Bitmap|Bitmap]] object. <br />
 
Sets the anchor point of [[Special:MyLanguage/Bitmap|Bitmap]] object. <br />
Line 10: Line 10:
 
  Bitmap:setAnchorPoint(x,y)
 
  Bitmap:setAnchorPoint(x,y)
 
</source>
 
</source>
=== Parameters ===
+
=== <translate>Parameters</translate> ===
 
'''x''': (number) <translate>The x coordinate of anchor point. Usually between [0, 1].</translate> <br/>
 
'''x''': (number) <translate>The x coordinate of anchor point. Usually between [0, 1].</translate> <br/>
 
'''y''': (number) <translate>The y coordinate of anchor point. Usually between [0, 1].</translate> <br/>
 
'''y''': (number) <translate>The y coordinate of anchor point. Usually between [0, 1].</translate> <br/>

Revision as of 08:29, 24 August 2018

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(x,y)

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].