Bläddra i källkod

solution

Haut-Bas-souris-frein-accélération
Maurice 3 år sedan
förälder
incheckning
75b6362d3c
2 ändrade filer med 45 tillägg och 1 borttagningar
  1. +30
    -1
      birdie.py
  2. +15
    -0
      birdie1.py

+ 30
- 1
birdie.py Visa fil

@@ -1 +1,30 @@
print('Hello world !')
import pgzrun

TITLE = "Paf l'oiseau"
WIDTH = 400
HEIGHT = 708

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

def update():
titi.y += 1

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

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

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





pgzrun.go()



+ 15
- 0
birdie1.py Visa fil

@@ -0,0 +1,15 @@
import pgzrun

TITLE = "Paf l'oiseau"
WIDTH = 400
HEIGHT = 708

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




pgzrun.go()



Laddar…
Avbryt
Spara