Difference between revisions of "Sprite:getAnchorPosition"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2015.03.22<br/> === Description === Returns x,y,z anchor position of the `Sprite` in its relative coordinates <source lang="lua"> (num...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2015.03.22<br/>
 
'''Available since:''' Gideros 2015.03.22<br/>
 +
'''Class:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
Returns x,y,z anchor position of the `Sprite` in its relative coordinates
+
Returns x,y,z anchor position of the '''Sprite''' in its relative coordinates.
<source lang="lua">
+
<syntaxhighlight lang="lua">
(number) (number) (number), = Sprite:getAnchorPosition()
+
(number), (number), (number) = Sprite:getAnchorPosition()
</source>
+
</syntaxhighlight>
 +
 
 +
=== Return values ===
 
'''Returns''' (number) anchor x position<br/>
 
'''Returns''' (number) anchor x position<br/>
 
'''Returns''' (number) anchor y position<br/>
 
'''Returns''' (number) anchor y position<br/>
 
'''Returns''' (number) anchor z position<br/>
 
'''Returns''' (number) anchor z position<br/>
 +
 +
=== Note ===
 +
'''getAnchorPoint''' is available in the Bitmap class: [[Bitmap:getAnchorPoint]]
 +
 +
{{Sprite}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2015.03.22
Class: Sprite

Description

Returns x,y,z anchor position of the Sprite in its relative coordinates.

(number), (number), (number) = Sprite:getAnchorPosition()

Return values

Returns (number) anchor x position
Returns (number) anchor y position
Returns (number) anchor z position

Note

getAnchorPoint is available in the Bitmap class: Bitmap:getAnchorPoint