https://github.com/scanmountgoat/sm4sh_lib
Smash 4 Wii U file format and rendering libraries
https://github.com/scanmountgoat/sm4sh_lib
Last synced: 7 months ago
JSON representation
Smash 4 Wii U file format and rendering libraries
- Host: GitHub
- URL: https://github.com/scanmountgoat/sm4sh_lib
- Owner: ScanMountGoat
- License: mit
- Created: 2025-02-10T20:14:02.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-01T17:52:15.000Z (10 months ago)
- Last Synced: 2025-07-01T18:46:38.266Z (10 months ago)
- Language: Rust
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sm4sh_lib
Rust libraries and tools for working with rendering related file formats for Smash 4 for the Wii U.
Python bindings for sm4sh_model are available with [sm4sh_model_py](https://github.com/ScanMountGoat/sm4sh_model_py). For working with models in Blender, see [sm4sh_blender](https://github.com/ScanMountGoat/sm4sh_blender).
## Formats
| Format | Magic | Extension | Description |
| --- | --- | --- | --- |
| [Jtb](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/jtb.rs) | | jtb | joint tables |
| [Mta](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/mta.rs) | MTA2, MTA3, MTA4 | mta | material animations |
| [Nhb](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/nhb.rs) | NHB, BHN | nhb | helper bones |
| [Nsh](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/nsh.rs) | NSP3 | nsh | shaders |
| [Nud](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/nud.rs) | NDP3 | nud | models |
| [Nut](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/nut.rs) | NTP3, NTWU | nut | textures |
| [Omo](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/omo.rs) | OMO | omo | animations |
| [Pack](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/pack.rs) | PACK, KCAP | pac | file archives |
| [Sb](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/sb.rs) | SWB, BWS | sb | swing bones |
| [Vbn](https://github.com/ScanMountGoat/sm4sh_lib/blob/main/sm4sh_lib/src/vbn.rs) | VBN, NVB | vbn | skeletons |
## Credits
This project is based primarily on previous development and reverse engineering work done for [Smash Forge](https://github.com/jam1garner/Smash-Forge). See [Cemu](https://github.com/cemu-project/Cemu) and [decaf-emu](https://github.com/decaf-emu/decaf-emu) for details on the Wii U hardware. See the source code for links to other projects and documentation.