소스 검색

lef right ok

chapitre-1-left-right
Fabien Toune 3 년 전
부모
커밋
f00832a3c2
1개의 변경된 파일11개의 추가작업 그리고 4개의 파일을 삭제
  1. +11
    -4
      birdie.py

+ 11
- 4
birdie.py 파일 보기

@@ -4,12 +4,19 @@ TITLE = "Paf l'oiseau"
WIDTH = 400
HEIGHT = 708

def on_mouse_down():
print('Clic souris !')
titi.y -= 50
def on_mouse_down(button):
print('Clic', button)
if button == mouse.RIGHT :
titi.speed += 1
elif button == mouse.LEFT :
titi.speed -= 1

def update():
titi.y += titi.speed
titi.x += titi.speed
if titi.left > WIDTH :
titi.right = 0
if titi.right < 0 :
titi.left = WIDTH

def draw():
screen.blit('background', (0, 0))


불러오는 중...
취소
저장