| Crates.io | anim2rbx |
| lib.rs | anim2rbx |
| version | 0.1.0 |
| created_at | 2025-07-16 11:48:03.620796+00 |
| updated_at | 2025-07-16 11:48:03.620796+00 |
| description | Convert animation files to Roblox KeyframeSequence format |
| homepage | |
| repository | https://github.com/jiwonz/anim2rbx |
| max_upload_size | |
| id | 1755373 |
| size | 106,110 |
A Rust library and CLI tool for converting animation files to Roblox KeyframeSequence format.
# Basic conversion
anim2rbx animation.fbx
# With options
anim2rbx animation.fbx -o output.rbxm --verbose
use anim2rbx::AnimationConverter;
let converter = AnimationConverter::default();
let kfs_dom = converter.convert_file_to_weakdom("animation.fbx")?;
cargo install anim2rbx
Supports many formats via Assimp including:
let converter = AnimationConverter::new(true, 1e-5)
.with_filter_identical_bones(false)
.with_epsilon(0.001);
Options:
--verbose - Enable debug logging--no-filter - Keep identical poses--epsilon - Precision thresholdMIT