1 Star 2 Fork 0

Johnson_Li/Red_and_Blue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
particle.py 426 Bytes
一键复制 编辑 原始数据 按行查看 历史
import pygame as pg
from pygame.sprite import Sprite
class Particle(Sprite):
def __init__(self, screen, pos, size, color):
super().__init__()
self.screen = screen
self.pos = pos
self.size = size
self.color = color
def update(self):
self.size -= 0.2
def draw_particle(self):
pg.draw.circle(self.screen, self.color, (self.pos[0], self.pos[1]), self.size)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/JohnsonLi06/Red_and_Blue.git
git@gitee.com:JohnsonLi06/Red_and_Blue.git
JohnsonLi06
Red_and_Blue
Red_and_Blue
main

搜索帮助