Let's say that I have a node structure like this, where A is the parent of B and C:
A
B
C
Each has scripts attached, which use _process
for logic. Currently, it executes A, then B, then C. However, I need the parent node's code to execute after the child nodes. How can I force the script attached to A to run after everything else?