#MASS button disabling
1 messages · Page 1 of 1 (latest)
you could try putting them as children of a node, then use node.get_children and loop through them
or put them in a group
for button in <their parent>.get_children():
button.disabled = true
You can try using groups https://docs.godotengine.org/en/stable/tutorials/scripting/groups.html
First add them to a group. After you can use call_group to call function on all nodes(that are in the tree) in the group
oh cool good to know