シーンのコントロールをループするにはどうすればよいですか? getChildrenUnmodifiable() を試しましたが、最初のレベルの子のみが返されます。
public void rec(Node node){
f(node);
if (node instanceof Parent) {
Iterator<Node> i = ((Parent) node).getChildrenUnmodifiable().iterator();
while (i.hasNext()){
this.rec(i.next());
}
}
}