(Image):setWrap

Sets the wrapping properties of an Image.

This function sets the way an Image is repeated when it is drawn with a Quad that is larger than the image's extent. An image may be clamped or set to repeat in both horizontal and vertical directions. Clamped images appear only once, but repeated ones repeat as many times as there is room in the Quad.

N.B. If you use a Quad that is larger than the image extent and do not use repeated tiling, there may be an unwanted visual effect of the image stretching all the way to fill the Quad. If this is the case, setting Image:getWrap("repeat", "repeat") for all the images to be repeated, and using Quads of appropriate size will result in the best visual appearance.

Function

Synopsis

Image:setWrap( horiz, vert )

Arguments

WrapMode horiz
Horizontal wrapping mode of the image.
WrapMode vert
Vertical wrapping mode of the image.

Returns

Nothing.

See Also

Other Languages