mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-18 18:56:36 +02:00
update entt to v3.15.0
This commit is contained in:
@ -23,7 +23,7 @@ static std::ostream& operator<<(std::ostream& out, const std::vector<entt::organ
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < nodes.size(); i++) {
|
||||
for (const size_t child : nodes[i].children()) {
|
||||
for (const size_t child : nodes[i].in_edges()) {
|
||||
out << "n" << child << " -> " << "n" << i << ";\n";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user