Difference between revisions of "Sprite:getHeight"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
Returns the height of the sprite, in pixels. The height is calculated based on the<br /> | Returns the height of the sprite, in pixels. The height is calculated based on the<br /> | ||
bounds of the content of the sprite.<br /> | bounds of the content of the sprite.<br /> | ||
<br /> | <br /> | ||
− | If "true" is passed to this method, the original height is returned without accounting for transformations. | + | If "true" is passed to this method, the original height is returned without accounting for transformations.</translate> |
<source lang="lua"> | <source lang="lua"> | ||
(number) = Sprite:getHeight(withoutTransform) | (number) = Sprite:getHeight(withoutTransform) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''withoutTransform''': (boolean) If true, return the height without transformation, else return the transformed height '''optional'''<br/> | + | '''withoutTransform''': (boolean) <translate>If true, return the height without transformation, else return the transformed height</translate> '''optional'''<br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (number) Height of the sprite.<br/> | + | '''Returns''' (number) <translate>Height of the sprite.</translate><br/> |
Revision as of 13:33, 23 August 2018
Available since: Gideros 2011.6
Description
Returns the height of the sprite, in pixels. The height is calculated based on the
bounds of the content of the sprite.
If "true" is passed to this method, the original height is returned without accounting for transformations.
(number) = Sprite:getHeight(withoutTransform)
Parameters
withoutTransform: (boolean) If true, return the height without transformation, else return the transformed height optional
Return values
Returns (number) Height of the sprite.