Python Forum
[PyGame] Turtle and Pygame together - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Game Development (https://python-forum.io/forum-11.html)
+--- Thread: [PyGame] Turtle and Pygame together (/thread-11181.html)



Turtle and Pygame together - cuevabros - Jun-26-2018

Hello, i´m trying to use the turtle library and the pygame library in the same program
but it doesn´t seem to work well ... is thar possible?
thanks in advance


RE: Turtle and Pygame together - ichabod801 - Jun-27-2018

I think it's entirely possible that it wouldn't work well.

But seriously, what are you looking to get from turtle that you can't get from pygame (especially pygame.draw)?


RE: Turtle and Pygame together - cuevabros - Jun-27-2018

Thanks for the response,
The thing is that i work in a high school, and we´re into a programming marathon and we were give a python source code that uses turtle and the idea is to improve it.
But maybe the only way is to start from zero with pygame or to use turtle.


RE: Turtle and Pygame together - ichabod801 - Jun-27-2018

I would either improve it in turtle, or start by translating the original code into pygame using pytgame.draw.


RE: Turtle and Pygame together - cuevabros - Jun-27-2018

Thanks!


RE: Turtle and Pygame together - santisav - Dec-11-2022

(Jun-27-2018, 03:04 PM)cuevabros Wrote: Thanks!

Hi! I was wondering if you were able to solve this. I find myself in a similar situation and cannot find a way to create turtle like animation in pygame. I havnt been able to reconcile the pygame while loop with a turtle like animation.

thanks!