Type String Object TextureResourceBitmap Library graphics.* Revision Release 2024.3703 See also TextureResource TextureResourceBitmap display.setDefault() texture.wrapY
Indicates the horizontal 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"