mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
parent
132e2f458d
commit
8d51618949
134 changed files with 1107 additions and 1110 deletions
|
@ -1165,9 +1165,9 @@ void VisualScript::_set_data(const Dictionary &p_data) {
|
|||
|
||||
Array nodes = func["nodes"];
|
||||
|
||||
for (int i = 0; i < nodes.size(); i += 3) {
|
||||
for (int j = 0; j < nodes.size(); j += 3) {
|
||||
|
||||
add_node(name, nodes[i], nodes[i + 2], nodes[i + 1]);
|
||||
add_node(name, nodes[j], nodes[j + 2], nodes[j + 1]);
|
||||
}
|
||||
|
||||
Array sequence_connections = func["sequence_connections"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue