Well, I know that you wanted to avoid this, but still this is not so bad and does the job:
Node node = youNode; while (node != null){ node = node.getParent(); } Node parentNode = node;
Otherwise, if you have access to the scene object:
Node parentNode = scene.getRoot();
source share