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?