Merge pull request #67805 from TokageItLab/fix-postimport-anim-arg

Fix passed dictionary to `internal_process()` in importer plugin for animation
This commit is contained in:
Rémi Verschelde 2022-10-31 10:49:47 +01:00
commit 93df2b0f6d
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1373,7 +1373,7 @@ Node *ResourceImporterScene::_post_fix_node(Node *p_node, Node *p_root, HashMap<
}
for (int i = 0; i < post_importer_plugins.size(); i++) {
post_importer_plugins.write[i]->internal_process(EditorScenePostImportPlugin::INTERNAL_IMPORT_CATEGORY_ANIMATION, p_root, p_node, anim, node_settings);
post_importer_plugins.write[i]->internal_process(EditorScenePostImportPlugin::INTERNAL_IMPORT_CATEGORY_ANIMATION, p_root, p_node, anim, anim_settings);
}
}
}