资源简介
简单的设计小游戏
代码片段和文件信息
import sys
from cx_Freeze import setup Executable
import os
# Dependencies are automatically detected but it might need fine tuning.
build_exe_options = {“packages“: [“os“ “pygame“]}
# GUI applications require a different base on Windows (the default is for a
# console application).
base = None
if sys.platform == “win32“:
base = “Win32GUI“
pygame_py_file = os.path.join(‘spaceshooter‘ ‘spaceShooter.py‘)
## The image and sound files are added manually into the zip file
## A fix for this would be released
setup( name = “Space Shooter“
version = “0.0.2“
description = “classic retro game made using pygame“
options = {“build_exe“: build_exe_options}
executables = [Executable(pygame_py_file base=base)]
)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-03-16 18:09 space_shooter-master\
文件 1308 2017-03-16 18:09 space_shooter-master\BUILDING_EXECUTABLE.rst
文件 1238 2017-03-16 18:09 space_shooter-master\CONTRIBUTING.rst
文件 1673 2017-03-16 18:09 space_shooter-master\LICENSE.txt
文件 7501 2017-03-16 18:09 space_shooter-master\README.md
文件 757 2017-03-16 18:09 space_shooter-master\setup.py
目录 0 2017-03-16 18:09 space_shooter-master\spaceshooter\
目录 0 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\
文件 559 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\bolt_gold.png
文件 803 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\laserRed16.png
文件 104059 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\main.png
文件 1804 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_big1.png
文件 2323 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_big2.png
文件 982 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_med1.png
文件 881 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_med3.png
文件 692 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_small1.png
文件 667 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_small2.png
文件 461 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\meteorBrown_tiny1.png
文件 667 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\missile.png
文件 2578 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\pla
文件 6100 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion00.png
文件 4173 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion01.png
文件 2325 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion02.png
文件 2150 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion03.png
文件 2778 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion04.png
文件 2901 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion05.png
文件 3063 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion06.png
文件 1797 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion07.png
文件 1780 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\regularExplosion08.png
文件 795 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\shield_gold.png
文件 5102 2017-03-16 18:09 space_shooter-master\spaceshooter\assets\sonicExplosion00.png
............此处省略19个文件信息
- 上一篇:python 本地相似图片识别
- 下一篇:python 爬取移动端微博信息
相关资源
- Python-使用遗传算法和深度学习训练
- python飞机大战小游戏
- 飞机大战python源码及游戏
- python pygame全民大战飞机游戏源码
- Python版俄罗斯方块游戏源码.rar
- Python坦克大战代码.rar
- Python 扫雷游戏PyMine完整源代码.rar
- HFO 在 Robocup 2D 足球游戏中,半场进攻
- python+pygame一个好玩的小游戏
- Python 飞机大战 游戏设计需求 与 实现
- 丧心病狂:用300行的python写个小游戏
- Python 扫雷
- python拼图游戏
- wxPython写的拼图小游戏
- 弹球小游戏Python源代码
- 2048小游戏Python源代码
- 用python实现2048小游戏
- 魔塔
- python九宫格拼图小游戏
- python编写的贪吃蛇
- 简易版植物大战僵尸 用python写的
- python实现2048游戏
- python36实现打外星人小游戏图形界面游
- python管道小鸟游戏
- Python2.7 贪吃蛇小游戏源码
- python五子棋代码
- python 战棋游戏六边形地图代码实现
- python实现贪吃蛇小游戏
- python大作业--爬虫完美应付大作业.z
- python小游戏大全——30个
评论
共有 条评论