Looking at the callstack I find as the last call before it is a function called like below (cakk stack previous occurrence). What the debugger is telling me is that 'ToInit' node is an orphan even though I called this code so surely it has already entered the scenetree if I can reference and call from this node in such a way. I have even tried breakpoint the 'previous occurence' code (just to make sure there is nothing that makes it an orphan I am missing.
# Call stack previous occurrence
inner_menu.get_node("ToInit").init(self)
# Later in call stack
func init(ref):
# Why is the 'ToInit' node an orphan
pass
Best regards