Type String Object TextureResourceBitmap Library graphics.* Revision Release 2022.3683 See also TextureResource TextureResourceBitmap display.setDefault() texture.wrapX
Indicates the vertical wrap mode for a texture: "clampToEdge"
, "repeat"
or "mirroredRepeat"
.
display.setDefault( "textureWrapX" , "repeat" ) display.setDefault( "textureWrapY" , "mirroredRepeat" ) -- Create "TextureResource" object of type "TextureResourceBitmap" local texture = graphics.newTexture( { type = "image" , filename= "background.png" } ) print ( texture.wrapX ) --> "repeat" print ( texture.wrapY ) --> "mirroredRepeat" |