Difference between revisions of "Sprite:getAnchorPosition"

From GiderosMobile
m
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== 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>
 
</source>

Revision as of 15:31, 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. <syntaxhighlight lang="lua"> (number), (number), (number) = Sprite:getAnchorPosition() </source>

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