0 votes

See title; which one is the better way to access a child node's functions? Should I use

emit_signal("start_stuff")

and have the child node have a corresponding on_start_stuff function linked via signal? Or should I do

$ChildNode.start_stuff()

with the start_stuff() function having identical function to the aforementioned on_start_stuff?
Also, would the answer be different if I wanted to access the child of a child node?

Godot version 3.2.3.stable
in Engine by (31 points)

1 Answer

+2 votes
Best answer

Generally speaking, the best rule-of-thumb for handling node communication is "call down, signal up". Following this mantra will make things easier and less troublesome in the majority of cases.

As a reference, I highly recommend keeping a copy of this diagram handy - it was made by a member of the community some time ago:

enter image description here

I've also written up some examples of the various situations described:

http://kidscancode.org/godot_recipes/basics/node_communication/

by (22,067 points)
selected by
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.