资源简介
飞机大战
代码片段和文件信息
import pygame
class Bullet(pygame.sprite.Sprite):
def __init__(self x y num):
pygame.sprite.Sprite.__init__(self)
self.music = ‘music/bullet.wav‘
self.image_str = ‘image/bullet%s.png‘%(num)
self.image = pygame.image.load(self.image_str).convert_alpha()
self.rect = self.image.get_rect()
self.rect.left self.rect.top = ((x*2)-self.rect.w)//2 y
self.speed = 12
self.disappear = False
self.mask = pygame.mask.from_surface(self.image)
def move(self):
self.rect.top -= self.speed
if self.rect.top < 0:
self.disappear = True
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-10-22 23:59 SunPyPlane-master\
文件 46 2017-10-22 23:59 SunPyPlane-master\.gitignore
文件 1064 2017-10-22 23:59 SunPyPlane-master\LICENSE
文件 1290 2017-10-22 23:59 SunPyPlane-master\README.md
文件 643 2017-10-22 23:59 SunPyPlane-master\bullet.py
文件 3441 2017-10-22 23:59 SunPyPlane-master\enemy.py
目录 0 2017-10-22 23:59 SunPyPlane-master\font\
文件 78500 2017-10-22 23:59 SunPyPlane-master\font\font.ttf
目录 0 2017-10-22 23:59 SunPyPlane-master\image\
文件 24728 2017-10-22 23:59 SunPyPlane-master\image\Protection_cover.png
文件 4559 2017-10-22 23:59 SunPyPlane-master\image\about_me.png
文件 6567 2017-10-22 23:59 SunPyPlane-master\image\again.png
文件 48286 2017-10-22 23:59 SunPyPlane-master\image\background.png
文件 600 2017-10-22 23:59 SunPyPlane-master\image\bullet1.png
文件 6739 2017-10-22 23:59 SunPyPlane-master\image\bullet10.png
文件 2989 2017-10-22 23:59 SunPyPlane-master\image\bullet2.png
文件 281 2017-10-22 23:59 SunPyPlane-master\image\bullet3.png
文件 539 2017-10-22 23:59 SunPyPlane-master\image\bullet4.png
文件 670 2017-10-22 23:59 SunPyPlane-master\image\bullet5.png
文件 1482 2017-10-22 23:59 SunPyPlane-master\image\bullet6.png
文件 1018 2017-10-22 23:59 SunPyPlane-master\image\bullet7.png
文件 1388 2017-10-22 23:59 SunPyPlane-master\image\bullet8.png
文件 1452 2017-10-22 23:59 SunPyPlane-master\image\bullet9.png
文件 1819 2017-10-22 23:59 SunPyPlane-master\image\enemy1.png
文件 2453 2017-10-22 23:59 SunPyPlane-master\image\enemy1_down1.png
文件 2815 2017-10-22 23:59 SunPyPlane-master\image\enemy1_down2.png
文件 3624 2017-10-22 23:59 SunPyPlane-master\image\enemy1_down3.png
文件 2749 2017-10-22 23:59 SunPyPlane-master\image\enemy1_down4.png
文件 7274 2017-10-22 23:59 SunPyPlane-master\image\enemy2.png
文件 7542 2017-10-22 23:59 SunPyPlane-master\image\enemy2_down1.png
文件 7609 2017-10-22 23:59 SunPyPlane-master\image\enemy2_down2.png
............此处省略48个文件信息
相关资源
- Django2 文件上传及功能支持中文名文件
- 深度学习入门:基于Python的理论与实
- 《Python3爬虫、数据清洗与可视化》
- IDA.Pro.v7.2_Hgl-Green(Python)+7.0(x86ar
- python项目开发案例集锦
- 《Python开发实战》(PDF版高清扫描版
- opencv_python官方中文教程源码修改版
- Python学习手册(第3版)-带目录完整版
- python2.7:scipy-0.19.0-win64
- Python Cookbook 第3版 中文版.pdf
-
ba
semap-1.2.1-cp37-cp37m-win_amd64.whl - 《Python源码剖析-深度探索动态语言核
- MDNETpython实现
- Python + PyQt5 + MySQL模拟QQ的聊天与娱乐
- 《Python深度学习》2018中文
- opencv3计算机视觉 python实现
- python项目web
- 目标跟踪CSK算法python实现
- Pycharm+Django+Python+MySQL开发
- Python自动化运维技术与最佳实践
- Python学习手册.mobi kindle电子书 带源码
- OpenCV 3-python语言
- Python基础教程 Beginning Python From Novic
- Selenium2 Python自动化测试实战第二版高
- 《selenium2 python 自动化测试实战第二版
- opencv_python-3.4.0+contrib-cp36-cp36m-win_amd
- 机电控制python
- scipy-1.0.0-cp36-none-win_amd64.whl
- python2.7、numpy、matplotlib在windows 64位平
- 《Python深度学习》中文版pdf+英文版
评论
共有 条评论