Noise:getTileTexture

From GiderosMobile

Available since: Gideros 2020.5
Class: FastNoise

Description

Gets the tileable noise texture (on all 4 sides).

(texture) = Noise:getTileTexture(width, height, [filtering, options])

Parameters

width: (number) texture width
height: (number) texture height
filtering: (boolean, default = false) whether or not the texture is filtered
options: (table, optional) a table that specifies optional paramaters. The following options are supported:

  • transparentColor: specify which color stands for transparent, for formats that don't supply an alpha channel such as JPEG
  • wrap: how to treat texels outside the texture. Possible values are Texture.CLAMP and Texture.REPEAT
  • format: the GPU pixel format for the texture
  • extend: whether the texture should be extended to a power of two size. Default = true
  • scale: the scale at which this texture was made if it cannot be determined by a suffix. Default = 1

Return values

Returns Texture object