TextureRegion.new

From GiderosMobile
Revision as of 09:57, 3 September 2018 by Hgy29 (talk | contribs)


Available since: Gideros 2011.6
Class: TextureRegion

Description


Creates a new TextureRegion object.

 TextureRegion.new(texture)

Parameters

texture: (TextureBase) texture object


Available since: Gideros 2011.6
Class: TextureRegion

Description


Creates a new TextureRegion object.

<ul>
<li>If TextureRegion object is created with 1 parameter (texture), it specifies the whole texture.</li>
<li>If TextureRegion object is created with 5 parameters (texture, x, y, width, height), if specifies a rectangular region within texture.</li>
</ul>

 TextureRegion.new(texture,x,y,width,height)

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