update rigging

This commit is contained in:
MihailRis
2024-06-30 20:35:42 +03:00
parent d4460928e5
commit 50f9bd508a
6 changed files with 34 additions and 18 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "rigging.hpp"
using namespace rigging;
RigNode::RigNode(size_t index, std::string name, std::vector<std::unique_ptr<RigNode>> subnodes)
: index(index), name(std::move(name)), subnodes(std::move(subnodes)) {
}
RigConfig::RigConfig(std::unique_ptr<RigNode> root) : root(std::move(root)) {
}