Difference between revisions of "Application:setScaleMode"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2012.2.2<br/> === Description === <br /> Sets the automatic scale mode of the application. Accepted values are:<br /> <br /> <ul>...") |
|||
Line 17: | Line 17: | ||
<br /> | <br /> | ||
<source lang="lua"> | <source lang="lua"> | ||
− | + | Application:setScaleMode(scaleMode) | |
</source> | </source> | ||
− | '''scaleMode | + | '''scaleMode''': (string) ''''''<br/> |
Revision as of 10:16, 23 August 2018
Available since: Gideros 2012.2.2
Description
Sets the automatic scale mode of the application. Accepted values are:
<ul>
<li>Application.NO_SCALE = "noScale"</li>
<li>Application.CENTER = "center"</li>
<li>Application.PIXEL_PERFECT = "pixelPerfect"</li>
<li>Application.LETTERBOX = "letterbox"</li>
<li>Application.CROP = "crop"</li>
<li>Application.STRETCH = "stretch"</li>
<li>Application.FIT_WIDTH = "fitWidth"</li>
<li>Application.FIT_HEIGHT = "fitHeight"</li>
</ul>
Application:setScaleMode(scaleMode)
'scaleMode: (string) '