Anita
Anita

Reputation: 21

Why can't I use a gif as a background with Turtle in Python?

I try to use a gif as a background for a game. The games works fine but the background is stuck on the first frame of the gif. I'm using Turtle library with Python. Thank you :)

screen = turtle.Screen()
screen.setup(800, 600)
screen.bgpic('background.gif')
screen.update()

Upvotes: 1

Views: 494

Answers (1)

Anita
Anita

Reputation: 21

Sadly we cannot use gifs with Turtle.

Upvotes: 1

Related Questions