基本信息
源码名称:python-pygame编程超级玛丽
源码大小:0.41M
文件格式:.rar
开发语言:Python
更新时间:2022-12-07
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 4 元 
   源码介绍

python-pygame编程超级玛丽

用pygame模块编程的超级玛丽游戏


.
├── python-pygame编程超级玛丽.rar
└── 超级玛丽
    ├── 01 (2).txt
    ├── PythonSuperMario-master
    │   ├── README.md
    │   ├── main.py
    │   ├── resources
    │   │   ├── demo
    │   │   │   ├── level_1_1.png
    │   │   │   ├── level_1_2.png
    │   │   │   ├── level_1_3.png
    │   │   │   └── level_1_4.png
    │   │   └── graphics
    │   │       ├── enemies.png
    │   │       ├── item_objects.png
    │   │       ├── level_1.png
    │   │       ├── level_2.png
    │   │       ├── level_3.png
    │   │       ├── level_4.png
    │   │       ├── mario_bros.png
    │   │       ├── smb_enemies_sheet.png
    │   │       ├── text_images.png
    │   │       ├── tile_set.png
    │   │       └── title_screen.png
    │   └── source
    │       ├── __init__.py
    │       ├── __pycache__
    │       │   ├── __init__.cpython-38.pyc
    │       │   ├── constants.cpython-38.pyc
    │       │   ├── main.cpython-38.pyc
    │       │   ├── setup.cpython-38.pyc
    │       │   └── tools.cpython-38.pyc
    │       ├── components
    │       │   ├── __init__.py
    │       │   ├── __pycache__
    │       │   │   ├── __init__.cpython-38.pyc
    │       │   │   ├── box.cpython-38.pyc
    │       │   │   ├── brick.cpython-38.pyc
    │       │   │   ├── coin.cpython-38.pyc
    │       │   │   ├── enemy.cpython-38.pyc
    │       │   │   ├── info.cpython-38.pyc
    │       │   │   ├── player.cpython-38.pyc
    │       │   │   ├── powerup.cpython-38.pyc
    │       │   │   └── stuff.cpython-38.pyc
    │       │   ├── box.py
    │       │   ├── brick.py
    │       │   ├── coin.py
    │       │   ├── enemy.py
    │       │   ├── info.py
    │       │   ├── player.py
    │       │   ├── powerup.py
    │       │   └── stuff.py
    │       ├── constants.py
    │       ├── data
    │       │   ├── maps
    │       │   │   ├── level_1.json
    │       │   │   ├── level_2.json
    │       │   │   ├── level_3.json
    │       │   │   └── level_4.json
    │       │   └── player
    │       │       ├── luigi.json
    │       │       └── mario.json
    │       ├── main.py
    │       ├── setup.py
    │       ├── states
    │       │   ├── __init__.py
    │       │   ├── __pycache__
    │       │   │   ├── __init__.cpython-38.pyc
    │       │   │   ├── level.cpython-38.pyc
    │       │   │   ├── load_screen.cpython-38.pyc
    │       │   │   └── main_menu.cpython-38.pyc
    │       │   ├── level.py
    │       │   ├── load_screen.py
    │       │   └── main_menu.py
    │       └── tools.py
    ├── README.md
    └── README1.md

14 directories, 63 files