Difference between revisions of "TextureRegion.new"
From GiderosMobile
(rearranged and removed language stuff) |
|||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | + | '''Available since:''' Gideros 2011.6<br/> | |
| − | ''' | + | '''Class:''' [[TextureRegion]]<br/> |
| − | ''' | + | |
| − | === | + | === Description === |
| − | + | Creates a new TextureRegion object. | |
| − | Creates a new TextureRegion object. | ||
| − | |||
<source lang="lua"> | <source lang="lua"> | ||
| − | + | TextureRegion.new(texture) | |
| + | </source> | ||
| + | <source lang="lua"> | ||
| + | TextureRegion.new(texture,x,y,width,height) | ||
</source> | </source> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| + | If TextureRegion object is created with 1 parameter (texture), it specifies the whole texture. | ||
| − | + | If TextureRegion object is created with 5 parameters (texture, x, y, width, height), it specifies a rectangular region within texture. | |
| − | If TextureRegion object is created with 5 parameters (texture, x, y, width, height), | ||
| − | |||
| − | + | === Parameters === | |
| − | + | '''texture''': (TextureBase) texture object<br/> | |
| − | + | '''x''': (number) left coordinate of the region<br/> | |
| − | + | '''y''': (number) top coordinate of the region<br/> | |
| − | === | + | '''width''': (number) width of the region<br/> |
| − | '''texture''': (TextureBase) | + | '''height''': (number) height of the region<br/> |
| − | '''x''': (number) | ||
| − | '''y''': (number) | ||
| − | '''width''': (number) | ||
| − | '''height''': (number) | ||
{{TextureRegion}} | {{TextureRegion}} | ||
Revision as of 21:07, 1 January 2022
Available since: Gideros 2011.6
Class: TextureRegion
Description
Creates a new TextureRegion object.
TextureRegion.new(texture)
TextureRegion.new(texture,x,y,width,height)
If TextureRegion object is created with 1 parameter (texture), it specifies the whole texture.
If TextureRegion object is created with 5 parameters (texture, x, y, width, height), it specifies a rectangular region within texture.
Parameters
texture: (TextureBase) texture object
x: (number) left coordinate of the region
y: (number) top coordinate of the region
width: (number) width of the region
height: (number) height of the region