Is there a way I can access the child node after this?: @onready var bumper = get_tree().get_nodes_in_group("bumper_group")
I tried: @onready var anim_bumper = bumper.get_child(1)
but I don't think that works.
I want to play the animation node. (The script is not attached to the node that is in the group)
EDIT:
I also tried
@onready var bumper = get_tree().get_nodes_in_group("bumper_group")
@onready var anim_bumper = bumper.get_node("AnimationBumper")
But it said invalid call