yoMMD is a software to show MMD models on Desktop, as known as "Desktop mascot," for Windows and macOS.
- MMD Model: つみ式ミクさんv4 by つみだんご様 (https://3d.nicovideo.jp/works/td56081)
- Motion: ぼんやり待ちループ by むつごろう様 (https://3d.nicovideo.jp/works/td30405)
For Windows user, you can download pre-build binary from here: https://github.com/mityu/yoMMD/releases/latest
- Apple/homebrew clang on macOS Ventura 13
- GCC on MinGW64 on MSYS2 on Windows 11
yoMMD must work on these environment.
- gcc (Windows)/clang (macOS)
- make
- cmake
- (optional) ninja
$ brew install cmake
$ brew install ninja # optional
Note that you have to use mingw-w64-x86_64-cmake
package, not cmake
package.
yoMMD build will fail with the msys cmake package.
$ pacman -S mingw-w64-x86_64-cmake
$ pacman -S mingw-w64-x86_64-ninja # optional
yoMMD manages its all dependencies as submodule. You don't need to additionaly install any libraries.
$ git clone https://github.com/mityu/yoMMD
$ cd yoMMD
$ git submodule update --init --recursive # Initialize submodule. This takes a bit long time...
$ make build-submodule
$ make -j4 # Build ./yoMMD executable
If you want to create application bundle (yoMMD.app
), additionaly do:
$ make app
yoMMD.app
will available under package/
directory.
Only MinGW64 on MSYS2 is officially supported now. Please prepare it before building yoMMD.
$ git clone https://github.com/mityu/yoMMD
$ cd yoMMD
$ git submodule update --init --recursive # Initialize submodule. This takes a bit long time...
$ make build-submodule
$ make release -j4 # Build ./yoMMD.exe executable.
If you want to build binary with DOS window enabled for some purpose (e.g. debugging), just do:
$ make
See $ make help
result for other available subcommands.
Please see files under doc/
directory: https://github.com/mityu/yoMMD/tree/main/doc
The example configuration for the screenshot on the top of this README.
model = "./つみ式ミクさんv4/つみ式ミクさんv4.pmx"
default-model-position = [0.65, -0.85]
default-camera-position = [0.0, 20.0, 50.0]
default-scale = 2.0
[[motion]]
path = ["./ぼんやり待ちループ/ぼんやり待ち合わせ_腕広いver(465f).vmd"]
# To specify multiple .vmd files.
# [[motion]]
# path = ["./path/to/awesome_model_motion.vmd", "./path/to/awesome_camera_motion.vmd"]
# disabled = true # Make this "true" to disable this motion.
where directory structure is:
|-- config.toml
|-- つみ式ミクさんv4
| |-- ...
| |-- つみ式ミクさんv4.pmx
+-- ぼんやり待ちループ
|-- ...
|-- ぼんやり待ち合わせ_腕広いver(465f).vmd
NOTE: yoMMD won't show MMD model on screen when no MMD motions are specified.
The MIT License, except for the files in icons/
directory.
For licenses of external libraries, please see LICENSES.md
- This software is powered by many awesome external libraries placed under
lib
directory. Thank you. - MMD drawer program, especially the shader program, is ported from
saba_viewer
program in benikabocha/Saba library. Thank you.