“clic gauche pygame” Réponses codées

cliqueur de droite en pygame

if event.type == pygame.MOUSEBUTTONDOWN:
    print(event.button)
    
#------------------------#
1 - left click
2 - middle click
3 - right click
4 - scroll up
5 - scroll down
#------------------------#
Shakedcode

clic gauche pygame

if event.type == pygame.MOUSEBUTTONDOWN:
  if event.button == 1:
    print("Left Mouse Button Down!")
Blushing Beaver

Pygame Event Mouse Cliquez avec le bouton droit

if event.type == pygame.MOUSEBUTTONDOWN:
	if event.button == 1:
    	print('LEFT MOUSE BUTTON CLICKED')
    elif event.button == 3:
    	print('RIGHT MOUSE BUTTON CLICKED')
a literal child

Réponses similaires à “clic gauche pygame”

Questions similaires à “clic gauche pygame”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code