[Solved] Collisions aren’t registering with Python Turtles
I think your primary issue is you’re updating the bullet between every enemy update instead of once for all the the enemy updates. This creates a skew between the visual and what’s really happening. Also, you don’t need to define the Pythagorean formula, turtles already know it! Below is my rework of your code to … Read more