We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29e6dac + db76b77 commit 6729c4eCopy full SHA for 6729c4e
addons/block_code/blocks/communication/groups.gd
@@ -3,7 +3,6 @@
3
extends BlockExtension
4
5
const OptionData = preload("res://addons/block_code/code_generation/option_data.gd")
6
-const Util = preload("res://addons/block_code/ui/util.gd")
7
8
9
# Global groups are just project settings in the global_group group.
@@ -58,7 +57,7 @@ func get_defaults() -> Dictionary:
58
57
return {}
59
60
# The default groups are only needed in the editor.
61
- if not Util.node_is_part_of_edited_scene(context_node):
+ if not context_node.is_part_of_edited_scene():
62
63
64
var groups: Array[String] = _get_edited_scene_groups()
0 commit comments