How can I loop over the controls of the scene ?
I tried with getChildrenUnmodifiable() but it returns only the first level of children.
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());
}
}
}
You need to scan recursively. For example: