Skip to content

Commit

Permalink
Merge pull request #121 from raspberrypilearning/draft
Browse files Browse the repository at this point in the history
Fix translation
  • Loading branch information
sashamishcheriakova authored Jul 5, 2024
2 parents 9a90ac1 + 29c996e commit 856b320
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions it-IT/code/dont_collide_skiing_cat_example/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ def setup():

def draw():
# Cose da fare in ogni fotogramma
global punteggio, sicurezza, velocita, sciare, incidenti
sicurezza = Color(255)
global punteggio, safe, velocita, sciare, incidenti
safe = Color(255)

if velocita > 0:
background(sicurezza)
background(safe)
fill(0)
text('Punteggio: ' + str(punteggio), width/2, 20)
disegnare_ostacoli()
Expand Down

0 comments on commit 856b320

Please sign in to comment.