Difference between revisions of "Sprite:globalToLocal"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Converts the x,y coordinates from the global to the sprite's (local) coordinates.<br /> <br />...")
 
Line 7: Line 7:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
(number) (number), = Sprite:globalToLocal(xy,)
+
(number), (number) = Sprite:globalToLocal(x,y)
 
</source>
 
</source>
'''x:''' (number) x coordinate of the global coordinate. ''''''<br/>
+
'''x''': (number) x coordinate of the global coordinate. ''''''<br/>
'''y:''' (number) y coordinate of the global coordinate. ''''''<br/>
+
'''y''': (number) y coordinate of the global coordinate. ''''''<br/>
 
'''Returns''' (number) 1. x coordinate relative to the display object.<br/>
 
'''Returns''' (number) 1. x coordinate relative to the display object.<br/>
 
'''Returns''' (number) 2. y coordinate relative to the display object.<br/>
 
'''Returns''' (number) 2. y coordinate relative to the display object.<br/>

Revision as of 11:17, 23 August 2018

Available since: Gideros 2011.6

Description


Converts the x,y coordinates from the global to the sprite's (local) coordinates.


(number), (number) = Sprite:globalToLocal(x,y)

'x: (number) x coordinate of the global coordinate. '
'y: (number) y coordinate of the global coordinate. '
Returns (number) 1. x coordinate relative to the display object.
Returns (number) 2. y coordinate relative to the display object.