mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
More work on visual scripting..
This commit is contained in:
parent
2f62a2542e
commit
cd25624667
10 changed files with 349 additions and 57 deletions
|
@ -54,7 +54,7 @@ void VisualScriptReturn::set_return_type(Variant::Type p_type) {
|
|||
if (type==p_type)
|
||||
return;
|
||||
type=p_type;
|
||||
emit_signal("ports_changed");
|
||||
ports_changed_notify();
|
||||
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ void VisualScriptReturn::set_enable_return_value(bool p_enable) {
|
|||
return;
|
||||
|
||||
with_value=p_enable;
|
||||
emit_signal("ports_changed");
|
||||
ports_changed_notify();
|
||||
}
|
||||
|
||||
bool VisualScriptReturn::is_return_value_enabled() const {
|
||||
|
@ -378,7 +378,7 @@ void VisualScriptSequence::set_steps(int p_steps) {
|
|||
return;
|
||||
|
||||
steps=p_steps;
|
||||
emit_signal("ports_changed");
|
||||
ports_changed_notify();
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue