0
Explain "sprites" in pygame python
What are sprites used for and how
2 Answers
+ 2
Joachim Bharathi
It is used when the object is first created to initalise the main properties of the object (e.g. its x and y position, dimensions, colour, etc.) class Car(pygame. sprite. ... # Fetch the rectangle object that has the dimensions of the image.
0
thanks. Mirielle