Answers for "pygame pyhton code"

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
0

Python, pygame

import sys
import pygame

pygame.init()
    
screen = pygame.display.set_mode((800, 400))
pygame.display.set_caption('Amogus Adventures')
clock = pygame.time.Clock()

test_font = pygame.font.Font('Graphics/Pixeltype.ttf', 50)
StartButton = pygame.image.load('Graphics/STARTAS.png')
GameStart = pygame.image.load('Graphics/gamestart.png')
text_surface = test_font.render('Press enter to play!', True, 'Green')
StartButton2 = pygame.image.load('Graphics/STARTAS2.png')
class Game:
    def __init__(self):
        self.screen = pygame.display.set_mode((800, 400))
        self.position = (100, 70)
        self.size = (325,125)
        self.rect = pygame.Rect(self.position, self.size)
        self.color = pygame.Color("red")
        pygame.display.set_caption('Amogus Adventures')

    def run(self):
        FPS = 60
        clock = pygame.time.Clock()
    
        while True:
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    pygame.quit()
                    sys.exit()
 
            mouse_position = pygame.mouse.get_pos()
            left_button,_,_ = pygame.mouse.get_pressed()
            if self.rect.collidepoint(mouse_position) and left_button:
                # Clicked, do your code, start your game
                print('clicked')
                
                pygame.draw.rect(self.screen, pygame.Color("green"), self.rect)
            else:
                # Not clicked, do normal stuff
                pygame.draw.rect(self.screen, pygame.Color("red"), self.rect)
 
            clock.tick(FPS)
            pygame.display.update()

            screen.blit(GameStart,(0,0))
            screen.blit(StartButton,(0,0))
            screen.blit(text_surface,(115,25))
            
if __name__ == '__main__':
    pygame.init()
    Game().run()
Posted by: Guest on August-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language