EditorScenePostImportPlugin: Return requested option value

This commit is contained in:
Dave Palais 2022-07-06 15:11:09 -05:00
parent 09e12ba9b4
commit d9e4327e34

View file

@ -144,11 +144,11 @@ Variant EditorScenePostImportPlugin::get_option_value(const StringName &p_name)
ERR_FAIL_COND_V_MSG(current_options == nullptr && current_options_dict == nullptr, Variant(), "get_option_value called from a function where option values are not available.");
ERR_FAIL_COND_V_MSG(current_options && !current_options->has(p_name), Variant(), "get_option_value called with unexisting option argument: " + String(p_name));
ERR_FAIL_COND_V_MSG(current_options_dict && !current_options_dict->has(p_name), Variant(), "get_option_value called with unexisting option argument: " + String(p_name));
if (current_options) {
(*current_options)[p_name];
if (current_options && current_options->has(p_name)) {
return (*current_options)[p_name];
}
if (current_options_dict) {
(*current_options_dict)[p_name];
if (current_options_dict && current_options_dict->has(p_name)) {
return (*current_options_dict)[p_name];
}
return Variant();
}