Skip to content

Commit

Permalink
fix: enable spline interpolation by json data
Browse files Browse the repository at this point in the history
  • Loading branch information
hiikariri committed Feb 9, 2024
1 parent af337b9 commit 7991c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/akushon/action/node/action_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Action ActionManager::load_action(
} else if (key == "next") {
action.set_next_action(val);
} else if (key == "use_spline") {
action.enable_spline(true);
action.enable_spline(val);
}
}
action.generate_splines();
Expand Down

0 comments on commit 7991c1f

Please sign in to comment.