![]() |
VOOZH | about |
In this article, we will learn how to add background images to arcade games in Python.
We are going to use the below image as our background image.
👁 ImageSo to add this image as our background image we are going to use load_texture() and draw_texture_rectangle() function.
load_texture function is used to import texture from file in arcade.
Syntax: arcade.load_texture(name, x, y, width, height)
Parameters:
- name: Name of the file to that holds the texture.
- x: X position of the crop area of the texture
- y: Y position of the crop area of the texture
- width: width of the texture
- height: height of the texture
draw_texture_rectangle function used to import texture with specific coordinated.
Syntax: arcade.draw_texture_rectangle(x, y, width, height, texture, angle, alpha)
Parameters:
- x: x coordinate of rectangle center.
- y: y coordinate of rectangle center.
- width: width of texture
- height: height of the texture
- texture: identifier of texture returned from load_texture() call
- angle: rotation of the rectangle
- alpha: Transparency of image
Below is the implementation:
Output:
👁 Image