Advertisement
fevzi02

Шаблон Pygame

Dec 12th, 2021
2,303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.69 KB | None | 0 0
  1. #1 Импорт Нужных библиотек
  2. import pygame, sys
  3. #/1
  4.  
  5. #2 Переменные
  6. fps = 24
  7. pygame.init()
  8. screen = pygame.display.set_mode((1080, 720))
  9. clock = pygame.time.Clock()
  10. #/2
  11.  
  12. #3 Отрисовка Анимации
  13. while True:
  14.     screen.fill("white")
  15.     #4 Тут твой код для анимации
  16.    
  17.     #/4
  18.  
  19.     #5 Обработчик Событий
  20.     for event in pygame.event.get():
  21.         if event.type == pygame.QUIT or event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
  22.             pygame.quit()
  23.             sys.exit()
  24.     #/5
  25.  
  26.     #6 Магия        
  27.     pygame.display.flip()
  28.     clock.tick(fps)
  29.     #/6
  30.    
  31. #/3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement