mirror of
https://github.com/godotengine/godot-visual-script.git
synced 2026-01-04 18:10:07 +03:00
Remove empty lines around braces with the formatting script
This commit is contained in:
@@ -2635,7 +2635,6 @@ void VisualScriptLanguage::debug_get_stack_level_locals(int p_level, List<String
|
|||||||
|
|
||||||
f->debug_get_stack_member_state(*_call_stack[l].line,&locals);
|
f->debug_get_stack_member_state(*_call_stack[l].line,&locals);
|
||||||
for( List<Pair<StringName,int> >::Element *E = locals.front();E;E=E->next() ) {
|
for( List<Pair<StringName,int> >::Element *E = locals.front();E;E=E->next() ) {
|
||||||
|
|
||||||
p_locals->push_back(E->get().first);
|
p_locals->push_back(E->get().first);
|
||||||
p_values->push_back(_call_stack[l].stack[E->get().second]);
|
p_values->push_back(_call_stack[l].stack[E->get().second]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -647,7 +647,6 @@ PropertyInfo VisualScriptBuiltinFunc::get_output_value_port_info(int p_idx) cons
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
String VisualScriptBuiltinFunc::get_caption() const {
|
String VisualScriptBuiltinFunc::get_caption() const {
|
||||||
|
|
||||||
return "BuiltinFunc";
|
return "BuiltinFunc";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -64,7 +64,6 @@ class VisualScriptEditor : public ScriptEditorBase {
|
|||||||
};
|
};
|
||||||
|
|
||||||
enum PortAction {
|
enum PortAction {
|
||||||
|
|
||||||
CREATE_CALL_SET_GET,
|
CREATE_CALL_SET_GET,
|
||||||
CREATE_ACTION,
|
CREATE_ACTION,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -234,7 +234,6 @@ PropertyInfo VisualScriptFunctionCall::get_output_value_port_info(int p_idx) con
|
|||||||
|
|
||||||
/*MethodBind *mb = ClassDB::get_method(_get_base_type(),function);
|
/*MethodBind *mb = ClassDB::get_method(_get_base_type(),function);
|
||||||
if (mb) {
|
if (mb) {
|
||||||
|
|
||||||
ret = mb->get_argument_info(-1);
|
ret = mb->get_argument_info(-1);
|
||||||
} else {*/
|
} else {*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user