bone content flags

This commit is contained in:
Robin Appelman 2023-12-29 19:25:25 +01:00
commit 2cb245f838
2 changed files with 49 additions and 3 deletions

View file

@ -20,7 +20,7 @@ fn main() -> Result<(), vmdl::ModelError> {
for bone in mdl.bones {
println!(
"{}: from {} at\n\t{:?}\n\t{:?}",
bone.name, bone.parent, bone.rot, bone.procedural_rules
bone.name, bone.parent, bone.rot, bone.contents
);
}