| Crates.io | resonite-core |
| lib.rs | resonite-core |
| version | 0.2.1 |
| created_at | 2025-04-19 23:17:58.29862+00 |
| updated_at | 2025-04-22 06:29:31.07734+00 |
| description | Rust implementations of Resonite formats |
| homepage | |
| repository | https://github.com/vlams1/resonite-core |
| max_upload_size | |
| id | 1641206 |
| size | 49,361 |
resonite-core is a pure Rust implementation of file formats used by the game Resonite.
It provides parsing and serialization support for various Resonite-specific file types.
This library is not affiliated with the creators of Resonite.
AnimJ – JSON animation dataAnimX – Binary animation dataConverting AnimJ to AnimX
use resonite_core::animation::Animation;
let anim: Animation = serde_json::from_str(/* AnimJ */)?;
let mut buf = Vec::new();
anim.write_animx(&mut buf);