Skip to content

Commit

Permalink
Merge pull request #62792 from dpalais/return_option_value
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga authored Jul 7, 2022
2 parents 28a3dee + d9e4327 commit 8ec6c07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions editor/import/resource_importer_scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 8ec6c07

Please sign in to comment.