Bitmap.new

From GiderosMobile
Revision as of 15:26, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Available since: Gideros 2011.6
Class: Bitmap

Description

Creates a new Bitmap object using a Texture. <syntaxhighlight lang="lua"> Bitmap.new(texture) </source>

Parameters

texture: (texture) the bitmap texture



Available since: Gideros 2012.8.2
Class: Bitmap

Description

Creates a new Bitmap object using a TextureRegion. <syntaxhighlight lang="lua"> Bitmap.new(textureRegion) </source>

Parameters

textureRegion: (textureRegion) the bitmap texture region

Example

<syntaxhighlight lang="lua"> local texture = Texture.new("image.png") local region = TextureRegion.new(texture, 0, 0, 100, 50)

local bitmap1 = Bitmap.new(texture) local bitmap2 = Bitmap.new(region) stage:addChild(bitmap1) stage:addChild(bitmap2) </source>