Skip to content

Commit

Permalink
vis group data in transform group fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbucarlos committed Feb 6, 2023
1 parent be63293 commit c56726f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wifisafe_anim_splicer"
version = "1.1.0"
version = "1.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ fn main() -> Result<()> {
// Gather new bone data to finish the new transform group
if let Anim::V20{groups, buffer, ..} | Anim::V21{groups, buffer, ..} = &modified_anim{
for modified_group in &groups.elements{
if modified_group.group_type != GroupType::Transform{
continue;
}
for modified_node in &modified_group.nodes.elements{
if reference_node_names.contains(&modified_node.name){
continue;
Expand Down

0 comments on commit c56726f

Please sign in to comment.