-
大小: 3.17M文件類型: .zip金幣: 1下載: 0 次發(fā)布日期: 2024-05-08
- 語(yǔ)言: Python
- 標(biāo)簽: 飛機(jī)大戰(zhàn)??小游戲??飛機(jī)??游戲??
資源簡(jiǎn)介
飛機(jī)大戰(zhàn)小游戲
代碼片段和文件信息
import?pygame
class?Bullet1(pygame.sprite.Sprite):
????def?__init__(self?position):
????????pygame.sprite.Sprite.__init__(self)
????????self.image?=?pygame.image.load(‘images/bullet1.png‘).convert_alpha()
????????self.rect?=?self.image.get_rect()
????????self.rect.left?self.rect.top?=?position
????????self.speed?=?12
????????self.active?=?False
????????self.mask?=?pygame.mask.from_surface(self.image)
????def?move(self):
????????self.rect.top?-=?self.speed
????????if?self.rect.top?0:
????????????self.active?=?False
????def?reset(self?position):
????????self.rect.left?self.rect.top?=?position
????????self.active?=?True
class?Bullet2(pygame.sprite.Sprite):
????def?__init__(self?position):
????????pygame.sprite.Sprite.__init__(self)
????????self.image?=?pygame.image.load(‘images/bullet2.png‘).convert_alpha()
????????self.rect?=?self.image.get_rect()
????????self.rect.left?self.rect.top?=?position
????????self.speed?=?14
????????self.active?=?False
????????self.mask?=?pygame.mask.from_surface(self.image)
????def?move(self):
????????self.rect.top?-=?self.speed
????????if?self.rect.top?0:
????????????self.active?=?False
????def?reset(self?position):
????????self.rect.left?self.rect.top?=?position
????????self.active?=?True
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2020-02-01?20:08??飛機(jī)大戰(zhàn)\
?????目錄???????????0??2020-02-01?20:12??飛機(jī)大戰(zhàn)\.idea\
?????目錄???????????0??2020-02-01?20:07??飛機(jī)大戰(zhàn)\.idea\dictionaries\
?????文件?????????160??2020-02-01?20:07??飛機(jī)大戰(zhàn)\.idea\dictionaries\splinteredmyth.xm
?????文件?????????294??2020-02-01?20:00??飛機(jī)大戰(zhàn)\.idea\misc.xm
?????文件?????????283??2020-02-01?20:00??飛機(jī)大戰(zhàn)\.idea\modules.xm
?????文件???????11582??2020-02-01?20:12??飛機(jī)大戰(zhàn)\.idea\workspace.xm
?????文件?????????478??2020-02-01?20:00??飛機(jī)大戰(zhàn)\.idea\飛機(jī)大戰(zhàn).iml
?????目錄???????????0??2020-02-01?20:09??飛機(jī)大戰(zhàn)\__pycache__\
?????文件????????1813??2020-02-01?20:09??飛機(jī)大戰(zhàn)\__pycache__\bullet.cpython-37.pyc
?????文件????????4013??2020-02-01?20:09??飛機(jī)大戰(zhàn)\__pycache__\enemy.cpython-37.pyc
?????文件????????2026??2020-02-01?20:09??飛機(jī)大戰(zhàn)\__pycache__\myplane.cpython-37.pyc
?????文件????????2115??2020-02-01?20:09??飛機(jī)大戰(zhàn)\__pycache__\supply.cpython-37.pyc
?????文件????????1305??2020-02-01?20:05??飛機(jī)大戰(zhàn)\bullet.py
?????文件????????4385??2020-02-01?20:05??飛機(jī)大戰(zhàn)\enemy.py
?????目錄???????????0??2019-04-06?21:25??飛機(jī)大戰(zhàn)\font\
?????文件???????78500??2015-07-24?18:05??飛機(jī)大戰(zhàn)\font\font.ttf
?????目錄???????????0??2019-04-06?21:19??飛機(jī)大戰(zhàn)\images\
?????文件????????4088??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\again.png
?????文件???????38589??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\background.png
?????文件????????5641??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\bomb.png
?????文件????????7609??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\bomb_supply.png
?????文件?????????292??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\bullet1.png
?????文件?????????289??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\bullet2.png
?????文件????????7153??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\bullet_supply.png
?????文件????????3232??2018-12-21?20:51??飛機(jī)大戰(zhàn)\images\enemy1.png
?????文件????????3469??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\enemy1_down1.png
?????文件????????3932??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\enemy1_down2.png
?????文件????????5287??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\enemy1_down3.png
?????文件????????2040??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\enemy1_down4.png
?????文件????????7864??2018-12-21?20:35??飛機(jī)大戰(zhàn)\images\enemy2.png
............此處省略113個(gè)文件信息
評(píng)論
共有 條評(píng)論