Difference between revisions of "Texture:setWrap"

(Created page)
 
m
Line 12: Line 12:
 
{{param|WrapMode|horiz|Horizontal wrapping mode of the texture.}}
 
{{param|WrapMode|horiz|Horizontal wrapping mode of the texture.}}
 
{{param|WrapMode|vert|Vertical wrapping mode of the texture.}}
 
{{param|WrapMode|vert|Vertical wrapping mode of the texture.}}
 +
{{New feature|11.0|
 +
{{param|WrapMode|depth|Wrapping mode for the z-axis of a [[TextureType|Volume texture]].}}
 +
}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Revision as of 16:50, 28 May 2019

Sets the wrapping properties of a Texture.

This function sets the way a Texture is repeated when it is drawn with a Quad that is larger than the texture's extent, or when a custom Shader is used which uses texture coordinates outside of [0, 1]. A texture may be clamped or set to repeat in both horizontal and vertical directions.

Clamped textures appear only once (with the edges of the texture stretching to fill the extent of the Quad), whereas repeated ones repeat as many times as there is room in the Quad.

Function

Synopsis

Texture:setWrap( horiz, vert )

Arguments

WrapMode horiz
Horizontal wrapping mode of the texture.
WrapMode vert
Vertical wrapping mode of the texture.
Available since LÖVE 11.0
WrapMode depth
Wrapping mode for the z-axis of a Volume texture.

Returns

Nothing.

See Also


Other Languages