CI: Fix godot regression project test
Fix crash and memory leak in `SpringBoneSimulator3D` Fix crash in `GraphEdit`
This commit is contained in:
parent
6b5b84c0c5
commit
4b9650f54e
4 changed files with 27 additions and 4 deletions
|
|
@ -2330,6 +2330,8 @@ TypedArray<Dictionary> GraphEdit::_get_connections_intersecting_with_rect(const
|
|||
}
|
||||
|
||||
TypedArray<Dictionary> GraphEdit::_get_connection_list_from_node(const StringName &p_node) const {
|
||||
ERR_FAIL_COND_V(!connection_map.has(p_node), TypedArray<Dictionary>());
|
||||
|
||||
List<Ref<GraphEdit::Connection>> connections_from_node = connection_map.get(p_node);
|
||||
TypedArray<Dictionary> connections_from_node_dict;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue