Advertisement
frecnbr

Помогите добавить в код на Python частицы

Aug 30th, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.72 KB | Software | 0 0
  1. import pygame
  2. import random
  3. from pygame.locals import *
  4.  
  5. # Инициализация Pygame
  6. pygame.init()
  7.  
  8. # Размеры экрана
  9. screen_width = 800
  10. screen_height = 600
  11.  
  12. # Цвета
  13. BLACK = (0, 0, 0)
  14.  
  15. # Создание экрана
  16. screen = pygame.display.set_mode((screen_width, screen_height))
  17. pygame.display.set_caption("Particle Effects")
  18.  
  19. # Создание частиц
  20. class Particle(pygame.sprite.Sprite):
  21.     def __init__(self, pos, speed):
  22.         super().__init__()
  23.         self.image = pygame.Surface((4, 4))
  24.         self.image.fill((255, 255, 255))
  25.         self.rect = self.image.get_rect(center=pos)
  26.         self.speed = speed
  27.  
  28.     def update(self):
  29.         self.rect.x += self.speed[0]
  30.         self.rect.y += self.speed[1]
  31.         if self.rect.left > screen_width or self.rect.right < 0 or self.rect.top > screen_height or self.rect.bottom < 0:
  32.             self.kill()
  33.  
  34. # Создание группы для частиц
  35. all_particles = pygame.sprite.Group()
  36.  
  37. # Основной цикл
  38. clock = pygame.time.Clock()
  39. running = True
  40. while running:
  41.     for event in pygame.event.get():
  42.         if event.type == QUIT:
  43.             running = False
  44.  
  45.     # Генерация новых частиц
  46.     particle_pos = (random.randint(0, screen_width), screen_height)
  47.     particle_speed = (random.uniform(-2, 2), -random.uniform(1, 4))
  48.     particle = Particle(particle_pos, particle_speed)
  49.     all_particles.add(particle)
  50.  
  51.     # Обновление частиц
  52.     all_particles.update()
  53.  
  54.     # Очистка экрана
  55.     screen.fill(BLACK)
  56.  
  57.     # Отрисовка частиц
  58.     all_particles.draw(screen)
  59.  
  60.     pygame.display.flip()
  61.     clock.tick(60)
  62.  
  63. pygame.quit()
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement