소스 검색

Horizontal

Haut-Bas-souris-frein-accélération
Maurice 3 년 전
부모
커밋
f3821f1608
1개의 변경된 파일5개의 추가작업 그리고 8개의 파일을 삭제
  1. +5
    -8
      birdie.py

+ 5
- 8
birdie.py 파일 보기

@@ -6,24 +6,21 @@ HEIGHT = 708

def on_mouse_down():
print('Clic souris !')
titi.y = titi.y - 50
titi.x = titi.x - 30
print (titi.x)

def update():
titi.y += 1
titi.x += 1

def update():
titi.y += titi.speed
titi.x += titi.speed

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

titi = Actor ('bird1', (75,350))




titi = Actor ('bird1', (75,150))
titi.speed = 1

pgzrun.go()



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