Im making a 2d game where you can shoot, so the logic is when pygame.mouse.get_pressed()[0]
(mouse is pressed) bullets are created. Problem is, when im holding my finger on mouse, and key is pressed, my code creates one bullet when i start clicking, when im still clicking nothings happening, when i move my mouse, the bullets start to create. Pygame dont create bullets when the mouse is in a single position, i have to move mouse. Whats wrong. Here is the important fragment of code. (its in a def run())
its in a loop (https://i.stack.imgur.com/0Y86f.png)