resonite-core
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.
Currently Supported Formats
AnimJ– JSON animation dataAnimX– Binary animation data
Example
Converting AnimJ to AnimX
use Animation;
let anim: Animation = from_str?;
let mut buf = Vecnew;
anim.write_animx;