Difference between revisions of "Sprite:getPosition"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate><br />
+
Returns the x, y and z coordinates of the sprite.
Returns the x, y and z coordinates of the sprite.<br />
+
<syntaxhighlight lang="lua">
<br /></translate>
 
<source lang="lua">
 
 
(number), (number), (number) = Sprite:getPosition()
 
(number), (number), (number) = Sprite:getPosition()
</source>
+
</syntaxhighlight>
 +
 
 
=== Return values ===
 
=== Return values ===
'''Returns''' (number) <translate>The x coordinates of the sprite</translate><br/>
+
'''Returns''' (number) the x coordinate of the sprite<br/>
'''Returns''' (number) <translate>The y coordinates of the sprite</translate><br/>
+
'''Returns''' (number) the y coordinate of the sprite<br/>
'''Returns''' (number) <translate>The z coordinates of the sprite</translate><br/>
+
'''Returns''' (number) the z coordinate of the sprite<br/>
 +
 
 +
{{Sprite}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: Sprite

Description

Returns the x, y and z coordinates of the sprite.

(number), (number), (number) = Sprite:getPosition()

Return values

Returns (number) the x coordinate of the sprite
Returns (number) the y coordinate of the sprite
Returns (number) the z coordinate of the sprite