1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-23 15:16:17 +00:00

CI: Fix godot regression project test

Fix crash and memory leak in `SpringBoneSimulator3D`
Fix crash in `GraphEdit`
This commit is contained in:
LuoZhihao
2025-03-26 17:33:18 +08:00
parent 6b5b84c0c5
commit 4b9650f54e
4 changed files with 27 additions and 4 deletions

View File

@@ -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;