Difference between revisions of "Sprite:localToGlobal"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
Converts the x,y coordinates from the sprite's (local) coordinates to the global coordinates.<br /> | Converts the x,y coordinates from the sprite's (local) coordinates to the global coordinates.<br /> | ||
− | <br /> | + | <br /></translate> |
<source lang="lua"> | <source lang="lua"> | ||
(number), (number) = Sprite:localToGlobal(x,y) | (number), (number) = Sprite:localToGlobal(x,y) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''x''': (number) x coordinate of the local coordinate. <br/> | + | '''x''': (number) <translate>x coordinate of the local coordinate.</translate> <br/> |
− | '''y''': (number) y coordinate of the local coordinate. <br/> | + | '''y''': (number) <translate>y coordinate of the local coordinate.</translate> <br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (number) 1. x coordinate relative to the display area.<br/> | + | '''Returns''' (number) <translate>1. x coordinate relative to the display area.</translate><br/> |
− | '''Returns''' (number) 2. y coordinate relative to the display area.<br/> | + | '''Returns''' (number) <translate>2. y coordinate relative to the display area.</translate><br/> |
Revision as of 13:38, 23 August 2018
Available since: Gideros 2011.6
Description
Converts the x,y coordinates from the sprite's (local) coordinates to the global coordinates.
(number), (number) = Sprite:localToGlobal(x,y)
Parameters
x: (number) x coordinate of the local coordinate.
y: (number) y coordinate of the local coordinate.
Return values
Returns (number) 1. x coordinate relative to the display area.
Returns (number) 2. y coordinate relative to the display area.