@@ -10877,6 +10877,14 @@ return {
{
name = "repeat",
description = "Tiles the texture."
+ },
+ {
+ name = "mirror",
+ description = "Similar to `repeat`, but flips the texture each time it repeats."
+ name = "border",
+ description = "Similar to `clamp`, but everything outside the 0-1 uv range will be filled with transparent black, i.e. `(0, 0, 0, 0)`."
}
@@ -12,6 +12,17 @@ return {
name = 'repeat',
description = 'Tiles the texture.'
+ name = 'mirror',
+ description = 'Similar to `repeat`, but flips the texture each time it repeats.'
+ name = 'border',
+ description = [[
+ Similar to `clamp`, but everything outside the 0-1 uv range will be filled with transparent
+ black, i.e. `(0, 0, 0, 0)`.
+ ]]