Py5Shape.set_texture()
Contents
Py5Shape.set_texture()¶
Set a Py5Shape
object’s texture.
Examples¶

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | def setup():
py5.size(100, 100, py5.P2D)
img = py5.load_image("tower.jpg")
s = py5.create_shape()
s.begin_shape()
s.vertex(20, 20)
s.vertex(20, 80)
s.vertex(80, 80)
s.vertex(80, 20)
s.end_shape(py5.CLOSE)
s.set_texture(img)
s.set_texture_mode(py5.NORMAL)
s.set_texture_uv(0, 0, 0)
s.set_texture_uv(1, 0, 1)
s.set_texture_uv(2, 1, 1)
s.set_texture_uv(3, 1, 0)
py5.shape(s)
|
Description¶
Set a Py5Shape
object’s texture. This method differs from Py5Shape.texture() in that it is only to be used outside the Py5Shape.begin_shape() and Py5Shape.end_shape() methods. This method only works with the P2D
and P3D
renderers. This method can be used in conjunction with Py5Shape.set_texture_mode() and Py5Shape.set_texture_uv().
When textures are in use, the fill color is ignored. Instead, use Py5Shape.tint() to specify the color of the texture as it is applied to the shape.
Underlying Processing method: PShape.setTexture
Syntax¶
set_texture(tex: Py5Image, /) -> None
Parameters¶
tex: Py5Image - reference to a Py5Image object
Updated on November 12, 2021 11:30:58am UTC