Advertisement
ateyevtm

Untitled

Apr 5th, 2025
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.04 KB | None | 0 0
  1. import pygame
  2. import random
  3.  
  4. pygame.init()
  5.  
  6. #Константы
  7. WIDTH, HEIGHT = 800, 400
  8. GRAVITY = 0.8
  9. JUMP_STRENGHT = -15
  10. SPEED = 6
  11. OBSTACLE_WIDTH = 40
  12. OBSTACLE_HEIGHT = 60
  13. GAP_BETWEEN_OBSTACLES = 300
  14.  
  15. # Задаем цвета
  16. WHITE = (255, 255, 255)
  17. BLUE = (0, 150, 255)
  18. RED = (255, 0, 0)
  19. BACKGROUND_COLOR = (30,30,30)
  20. GROUND_COLOR = (38,236,104)
  21.  
  22. screen = pygame.display.set_mode((WIDTH, HEIGHT))
  23. pygame.display.set_caption("Ers first game")
  24.  
  25. class Player:
  26.     def __init__(self):
  27.         self.rect = pygame.Rect(100,HEIGHT - 80, 30, 30)
  28.         self.vel_y = 0
  29.         self.on_ground = False
  30.     def jump(self):
  31.         if self.on_ground:
  32.             self.vel_y = JUMP_STRENGHT
  33.             self.on_ground = False
  34.     def update(self):
  35.         self.vel_y += GRAVITY
  36.         self.rect.y += self.vel_y
  37.  
  38.         if self.rect.bottom > HEIGHT - 50:
  39.             self.rect.bottom = HEIGHT - 50
  40.             self.vel_y = 0
  41.             self.on_ground = True
  42.     def draw(self,screen):
  43.         pygame.draw.rect(screen, BLUE, self.rect)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement