Answers for "how to pygame"

8

how to setup pygame

# To install pygame, type 'pip install pygame' in the 
# windows powershell or the os terminal

# To create a blank screen as a setup for a game, use:
import pygame
import sys

pygame.init()

clock = pygame.time.Clock()

FPS = 30 # How many times the screen will update per second

screen_width = 600 # How wide the window will be
screen_height = 600 # how high the window will be

screen = pygame.display.set_mode((screen_width, screen_height)) # creates the screen

while True:
    clock.tick(FPS) # updates the screen, the amount of times it does so depends on the FPS
    for event in pygame.event.get(): # Allows you to add various events
        if event.type == pygame.QUIT: # Allows the user to exit using the X button
            pygame.quit()
            sys.exit()
Posted by: Guest on February-05-2021
14

pygame example

1 # Simple pygame program
 2 
 3 # Import and initialize the pygame library
 4 import pygame
 5 pygame.init()
 6 
 7 # Set up the drawing window
 8 screen = pygame.display.set_mode([500, 500])
 9 
10 # Run until the user asks to quit
11 running = True
12 while running:
13 
14     # Did the user click the window close button?
15     for event in pygame.event.get():
16         if event.type == pygame.QUIT:
17             running = False
18 
19     # Fill the background with white
20     screen.fill((255, 255, 255))
21 
22     # Draw a solid blue circle in the center
23     pygame.draw.circle(screen, (0, 0, 255), (250, 250), 75)
24 
25     # Flip the display
26     pygame.display.flip()
27 
28 # Done! Time to quit.
29 pygame.quit()
Posted by: Guest on September-26-2020
26

python pygame

# Be sure to install pygame via pip

import pygame
import sys

# initialize it
pygame.init()

# configurations
frames_per_second = 30
window_height = 600
window_width = 400

# colors
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
BLUE = (0, 0, 255)

# creating window
display = pygame.display.set_mode((window_width, window_height))

# creating our frame regulator
clock = pygame.time.Clock()

# forever loop
while True:
  # frame clock ticking
  clock.tick(frames_per_second)
  
  # frame Drawing
  display.fill(WHITE)
  
  # event loop
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      pygame.quit()
      sys.exit()
Posted by: Guest on September-19-2020
0

how to set up pygame

import pygame
import os
import sys
import random
pygame.init()
screen = pygame.display.set_mode((800, 500))
Posted by: Guest on October-31-2020
0

pygame tutorial

# Simple pygame program
 2 
 3 # Import and initialize the pygame library
 4 import pygame
 5 pygame.init()
 6 
 7 # Set up the drawing window
 8 screen = pygame.display.set_mode([500, 500])
 9 
10 # Run until the user asks to quit
11 running = True
12 while running:
13 
14     # Did the user click the window close button?
15     for event in pygame.event.get():
16         if event.type == pygame.QUIT:
17             running = False
18 
19     # Fill the background with white
20     screen.fill((255, 255, 255))
21 
22     # Draw a solid blue circle in the center
23     pygame.draw.circle(screen, (0, 0, 255), (250, 250), 75)
24 
25     # Flip the display
26     pygame.display.flip()
27 
28 # Done! Time to quit.
29 pygame.quit()
Posted by: Guest on May-28-2021
0

pygame tutorial

import pygame

pygame.init()
Posted by: Guest on October-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language