pygame.examples.liquid

Se hai installato pygame pip install pygame puoi eseguire il codice originale scrivendo le istruzioni import pygame.examples.liquid pygame.examples.liquid.main() Versione riarrangiata Salva l’immagine nella sottocartella data import pygame as pg import os # path.split(), path.join() import math # sin() import time # sleep() def main(): pg.init() screen = pg.display.set_mode((640, 480), pg.HWSURFACE | pg.DOUBLEBUF) main_dir = os.path.split(os.path.abspath(__file__))[0] … Leggi tutto

Intro ball

Esempio ufficiale: https://www.pygame.org/docs/tut/PygameIntro.html Salva l’immagine a lato della palla nella stessa cartella del codice Codice import pygame # RISORSE GLOBALI WIDTH = 800 # ex 320 HEIGHT = 450 # ex 240 SCREEN_SIZE = (WIDTH, HEIGHT) GRIGIO = (65, 65, 65) # ex black= [0, 0, 0] SPEED = [1, 1] # ex [2, 2] … Leggi tutto