• 大小: 2.79M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 游戏  射击  小游戏  

资源简介

简单的设计小游戏

资源截图

代码片段和文件信息

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\playerShip1_orange.png
     文件        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个文件信息

评论

共有 条评论