mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-04 04:40:48 +02:00
simple window test
This commit is contained in:
parent
c7cb5f5f00
commit
f03cb2ae23
35
main.py
35
main.py
@ -0,0 +1,35 @@
|
|||||||
|
import pygame
|
||||||
|
from pygame.locals import *
|
||||||
|
|
||||||
|
def main():
|
||||||
|
pygame.init()
|
||||||
|
screen = pygame.display.set_mode((1280, 720), pygame.SCALED)
|
||||||
|
pygame.display.set_caption("Test Window")
|
||||||
|
|
||||||
|
clock = pygame.time.Clock()
|
||||||
|
live = True
|
||||||
|
x = 0
|
||||||
|
|
||||||
|
while live:
|
||||||
|
# Set clock tick to 60 fps
|
||||||
|
clock.tick(60)
|
||||||
|
|
||||||
|
#
|
||||||
|
for event in pygame.event.get():
|
||||||
|
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
|
||||||
|
live = False
|
||||||
|
|
||||||
|
# Change background color
|
||||||
|
if x == 255: x = 0
|
||||||
|
else: x += 1
|
||||||
|
screen.fill((x, 0, 0))
|
||||||
|
|
||||||
|
# Draw Scene
|
||||||
|
pygame.display.flip()
|
||||||
|
|
||||||
|
# Display current fps
|
||||||
|
print(float("{0:.2f}".format(clock.get_fps())), 'fps')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
Loading…
x
Reference in New Issue
Block a user