mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-04 04:40:48 +02:00
Color and text test
This commit is contained in:
parent
ccf542688c
commit
2d144bf907
23
main.py
23
main.py
@ -1,14 +1,27 @@
|
|||||||
import pygame
|
import pygame
|
||||||
from pygame.locals import *
|
from pygame.locals import *
|
||||||
|
|
||||||
|
RESOLUTION = (1280, 720)
|
||||||
|
DIFFICULTY = 1
|
||||||
|
|
||||||
|
Color_white = (255, 255, 255)
|
||||||
|
Color_Black = (0, 0, 0)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
pygame.init()
|
pygame.init()
|
||||||
screen = pygame.display.set_mode((1280, 720), pygame.SCALED)
|
screen = pygame.display.set_mode((1280, 720), pygame.SCALED)
|
||||||
pygame.display.set_caption("Test Window")
|
pygame.display.set_caption("Test Window")
|
||||||
|
|
||||||
|
width = screen.get_width()
|
||||||
|
height = screen.get_height()
|
||||||
|
|
||||||
|
font = pygame.font.SysFont('Corbel', 35)
|
||||||
|
|
||||||
|
test = font.render('quit' , True , Color_Black)
|
||||||
|
|
||||||
clock = pygame.time.Clock()
|
clock = pygame.time.Clock()
|
||||||
live = True
|
live = True
|
||||||
x = 0
|
|
||||||
|
|
||||||
while live:
|
while live:
|
||||||
# Set clock tick to 60 fps
|
# Set clock tick to 60 fps
|
||||||
@ -18,12 +31,10 @@ def main():
|
|||||||
for event in pygame.event.get():
|
for event in pygame.event.get():
|
||||||
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
|
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
|
||||||
live = False
|
live = False
|
||||||
|
|
||||||
# Change background color
|
|
||||||
if x == 255: x = 0
|
|
||||||
else: x += 1
|
|
||||||
screen.fill((x, 0, 0))
|
|
||||||
|
|
||||||
|
screen.fill(Color_white)
|
||||||
|
screen.blit(test , (width/2,height/2))
|
||||||
|
|
||||||
# Draw Scene
|
# Draw Scene
|
||||||
pygame.display.flip()
|
pygame.display.flip()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user