MAR1D 是一款第一人称的马力欧游戏,游戏与任天堂官方没有任何关系。如果只是想玩游戏,可以查看项目主网站。
项目结构
$ tree -dL 1 . # the top level contains build files ├── accoutrements/ # files to install alongside the application (icon, .desktop, etc) ├── nix/ # nix build files ├── resources/ # runtime game resources (sounds, images, etc) ├── scripts/ # related scripts, not necessary for building or running └── src/ # source files
依赖
- meson (with ninja and pkgconfig)
- SDL2
- SDL2_mixer
- GLU
- libconfig
选项
选项可以通过游戏内菜单进行配置,将保存到配置文件中,该配置文件也可以直接编辑。它们也可以通过命令行选项设置。
MAR1D
可执行文件需要一些命令行参数(注意所有数字参数必须是整数):
-m##
设置音乐音量 (0-128)-f##
设置音效音量 (0-128)-w##
将显示区域设置为宽度##
像素-s##
设置鼠标灵敏度-y
反转鼠标 y 轴-d
调试模式
评论