Difference between revisions of "Sprite:globalToLocal"
From GiderosMobile
| Line 1: | Line 1: | ||
| __NOTOC__ | __NOTOC__ | ||
| − | '''Available since:''' Gideros 2011.6<br/> | + | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> | 
| − | === Description === | + | === <translate>Description</translate> === | 
| <translate><br /> | <translate><br /> | ||
| Converts the x,y coordinates from the global to the sprite's (local) coordinates.<br /> | Converts the x,y coordinates from the global to the sprite's (local) coordinates.<br /> | ||
| Line 9: | Line 9: | ||
| (number), (number) = Sprite:globalToLocal(x,y) | (number), (number) = Sprite:globalToLocal(x,y) | ||
| </source> | </source> | ||
| − | === Parameters === | + | === <translate>Parameters</translate> === | 
| '''x''': (number) <translate>x coordinate of the global coordinate.</translate> <br/> | '''x''': (number) <translate>x coordinate of the global coordinate.</translate> <br/> | ||
| '''y''': (number) <translate>y coordinate of the global coordinate.</translate> <br/> | '''y''': (number) <translate>y coordinate of the global coordinate.</translate> <br/> | ||
| − | === Return values === | + | === <translate>Return values</translate> === | 
| − | '''Returns''' (number) <translate>1. x coordinate relative to the display object.</translate><br/> | + | '''<translate>Returns</translate>''' (number) <translate>1. x coordinate relative to the display object.</translate><br/> | 
| − | '''Returns''' (number) <translate>2. y coordinate relative to the display object.</translate><br/> | + | '''<translate>Returns</translate>''' (number) <translate>2. y coordinate relative to the display object.</translate><br/> | 
Revision as of 07:27, 24 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)
Parameters
x: (number) x coordinate of the global coordinate. 
y: (number) y coordinate of the global coordinate. 
Return values
Returns (number) 1. x coordinate relative to the display object.
Returns (number) 2. y coordinate relative to the display object.
