texture.wrapY

Type String
Object TextureResourceBitmap
Library graphics.*
Revision Release 2024.3703
See also TextureResource
TextureResourceBitmap
display.setDefault()
texture.wrapX

Overview

Indicates the vertical wrap mode for a texture: "clampToEdge", "repeat" or "mirroredRepeat".

Example

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"