资源简介
代码片段和文件信息
import pygame
from pygame.sprite import Sprite
class Alien(Sprite):
def __init__(selfai_settingsscreen):
super(Alien self).__init__()
self.screen = screen
self.ai_settings = ai_settings
self.image = pygame.image.load(‘images/alien.bmp‘)
self.rect = self.image.get_rect()
self.rect.x = self.rect.width
self.rect.y = self.rect.height
self.x = float(self.rect.x)
def blitme(self):
self.screen.blit(self.image self.rect)
def check_edges(self):
screen_rect = self.screen.get_rect()
if self.rect.right >= screen_rect.right:
return True
elif self.rect.left <= 0:
return True
def update(self):
self.x += (self.ai_settings.alien_speed_factor*self.ai_settings.fleet_direction)
self.rect.x = self.x
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 775 2018-06-29 15:05 alien\alien.py
文件 1330 2018-06-30 10:48 alien\alien_invasion.py
文件 1139 2016-06-15 02:16 alien\bullet.py
文件 774 2018-06-29 23:52 alien\button.py
文件 5969 2018-06-30 14:55 alien\game_functions.py
文件 272 2018-06-30 14:47 alien\game_stats.py
文件 10494 2016-06-15 02:16 alien\images\alien.bmp
文件 8694 2016-06-15 02:16 alien\images\ship.bmp
文件 1675 2018-06-30 14:55 alien\scoreboard.py
文件 1322 2018-06-30 11:05 alien\settings.py
文件 1500 2018-06-29 21:34 alien\ship.py
文件 1261 2018-06-29 15:11 alien\__pycache__\alien.cpython-36.pyc
文件 1268 2018-06-29 09:46 alien\__pycache__\bullet.cpython-36.pyc
文件 1165 2018-06-29 23:56 alien\__pycache__\button.cpython-36.pyc
文件 5479 2018-06-30 14:55 alien\__pycache__\game_functions.cpython-36.pyc
文件 672 2018-06-30 14:55 alien\__pycache__\game_stats.cpython-36.pyc
文件 1976 2018-06-30 14:56 alien\__pycache__\scoreboard.cpython-36.pyc
文件 1466 2018-06-30 11:34 alien\__pycache__\settings.cpython-36.pyc
文件 1365 2018-06-29 21:35 alien\__pycache__\ship.cpython-36.pyc
目录 0 2018-09-06 11:02 alien\images
目录 0 2018-09-06 11:02 alien\__pycache__
目录 0 2018-09-06 11:02 alien
----------- --------- ---------- ----- ----
48596 22
相关资源
- python一个打砖块的小游戏
- 贪吃蛇游戏
- 通过GUI页面实现猜数游戏
- 唐僧大战白骨精(源码)
- python推箱子 游戏素材
- Python开发的24点游戏
- python 贪吃蛇 游戏
- python 贪吃蛇 小游戏源码
- 五子棋游戏源码(python实现)
- Pygame游戏源代码:中国象棋
- python制作象棋程序源码(pygame)
- python双人五子棋 游戏原码
- python撞击球游戏
- python 贪吃蛇小游戏源码
- python 猜成语游戏
- Python贪吃蛇游戏
- python pygame flappybird 卷轴类小游戏
- Python基础,循环应用小游戏
- python外星人入侵 游戏源码
- python开发的飞机大战 游戏源码
- python贪吃蛇游戏源码
- python 2048小游戏源码
- python 拼图 小游戏
- python 飞翔的小鸟 小游戏(flappybird)
- python 飞机大战 游戏源码
- python 五子棋 游戏源码
- python扫雷游戏源码
- python 像素小鸟小游戏源码(flappybir
- python 射击类小游戏
- 《Python和Pygame游戏开发指南》随书源
评论
共有 条评论