Merge pull request #20462 from fire/vs_don't_typeguess_nil
Visualscript: Don't type guess on nil and set default type to ""
This commit is contained in:
commit
33f1ca89a5
1 changed files with 7 additions and 7 deletions
|
@ -2728,7 +2728,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
VisualScriptNode::TypeGuess tg = _guess_output_type(port_action_node, port_action_output, vn);
|
VisualScriptNode::TypeGuess tg = _guess_output_type(port_action_node, port_action_output, vn);
|
||||||
if (tg.type == Variant::OBJECT) {
|
if (tg.type == Variant::OBJECT) {
|
||||||
vsfc->set_call_mode(VisualScriptFunctionCall::CALL_MODE_INSTANCE);
|
vsfc->set_call_mode(VisualScriptFunctionCall::CALL_MODE_INSTANCE);
|
||||||
|
vsfc->set_base_type(String(""));
|
||||||
if (tg.gdclass != StringName()) {
|
if (tg.gdclass != StringName()) {
|
||||||
vsfc->set_base_type(tg.gdclass);
|
vsfc->set_base_type(tg.gdclass);
|
||||||
|
|
||||||
|
@ -2740,7 +2740,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
vsfc->set_base_type(base_type);
|
vsfc->set_base_type(base_type);
|
||||||
}
|
}
|
||||||
if (p_text == "call" || p_text == "call_deferred") {
|
if (p_text == "call" || p_text == "call_deferred") {
|
||||||
vsfc->set_function("");
|
vsfc->set_function(String(""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (tg.script.is_valid()) {
|
if (tg.script.is_valid()) {
|
||||||
|
@ -2748,7 +2748,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
}
|
}
|
||||||
} else if (tg.type == Variant::NIL) {
|
} else if (tg.type == Variant::NIL) {
|
||||||
vsfc->set_call_mode(VisualScriptFunctionCall::CALL_MODE_INSTANCE);
|
vsfc->set_call_mode(VisualScriptFunctionCall::CALL_MODE_INSTANCE);
|
||||||
vsfc->set_base_type(script->get_instance_base_type());
|
vsfc->set_base_type(String(""));
|
||||||
} else {
|
} else {
|
||||||
vsfc->set_call_mode(VisualScriptFunctionCall::CALL_MODE_BASIC_TYPE);
|
vsfc->set_call_mode(VisualScriptFunctionCall::CALL_MODE_BASIC_TYPE);
|
||||||
vsfc->set_basic_type(tg.type);
|
vsfc->set_basic_type(tg.type);
|
||||||
|
@ -2762,7 +2762,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
VisualScriptNode::TypeGuess tg = _guess_output_type(port_action_node, port_action_output, vn);
|
VisualScriptNode::TypeGuess tg = _guess_output_type(port_action_node, port_action_output, vn);
|
||||||
if (tg.type == Variant::OBJECT) {
|
if (tg.type == Variant::OBJECT) {
|
||||||
vsp->set_call_mode(VisualScriptPropertySet::CALL_MODE_INSTANCE);
|
vsp->set_call_mode(VisualScriptPropertySet::CALL_MODE_INSTANCE);
|
||||||
|
vsp->set_base_type(String(""));
|
||||||
if (tg.gdclass != StringName()) {
|
if (tg.gdclass != StringName()) {
|
||||||
vsp->set_base_type(tg.gdclass);
|
vsp->set_base_type(tg.gdclass);
|
||||||
|
|
||||||
|
@ -2779,7 +2779,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
}
|
}
|
||||||
} else if (tg.type == Variant::NIL) {
|
} else if (tg.type == Variant::NIL) {
|
||||||
vsp->set_call_mode(VisualScriptPropertySet::CALL_MODE_INSTANCE);
|
vsp->set_call_mode(VisualScriptPropertySet::CALL_MODE_INSTANCE);
|
||||||
vsp->set_base_type(script->get_instance_base_type());
|
vsp->set_base_type(String(""));
|
||||||
} else {
|
} else {
|
||||||
vsp->set_call_mode(VisualScriptPropertySet::CALL_MODE_BASIC_TYPE);
|
vsp->set_call_mode(VisualScriptPropertySet::CALL_MODE_BASIC_TYPE);
|
||||||
vsp->set_basic_type(tg.type);
|
vsp->set_basic_type(tg.type);
|
||||||
|
@ -2792,7 +2792,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
VisualScriptNode::TypeGuess tg = _guess_output_type(port_action_node, port_action_output, vn);
|
VisualScriptNode::TypeGuess tg = _guess_output_type(port_action_node, port_action_output, vn);
|
||||||
if (tg.type == Variant::OBJECT) {
|
if (tg.type == Variant::OBJECT) {
|
||||||
vsp->set_call_mode(VisualScriptPropertyGet::CALL_MODE_INSTANCE);
|
vsp->set_call_mode(VisualScriptPropertyGet::CALL_MODE_INSTANCE);
|
||||||
|
vsp->set_base_type(String(""));
|
||||||
if (tg.gdclass != StringName()) {
|
if (tg.gdclass != StringName()) {
|
||||||
vsp->set_base_type(tg.gdclass);
|
vsp->set_base_type(tg.gdclass);
|
||||||
|
|
||||||
|
@ -2809,7 +2809,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
|
||||||
}
|
}
|
||||||
} else if (tg.type == Variant::NIL) {
|
} else if (tg.type == Variant::NIL) {
|
||||||
vsp->set_call_mode(VisualScriptPropertyGet::CALL_MODE_INSTANCE);
|
vsp->set_call_mode(VisualScriptPropertyGet::CALL_MODE_INSTANCE);
|
||||||
vsp->set_base_type(script->get_instance_base_type());
|
vsp->set_base_type(String(""));
|
||||||
} else {
|
} else {
|
||||||
vsp->set_call_mode(VisualScriptPropertyGet::CALL_MODE_BASIC_TYPE);
|
vsp->set_call_mode(VisualScriptPropertyGet::CALL_MODE_BASIC_TYPE);
|
||||||
vsp->set_basic_type(tg.type);
|
vsp->set_basic_type(tg.type);
|
||||||
|
|
Loading…
Reference in a new issue