List of usage examples for com.badlogic.gdx.scenes.scene2d Actor notify
public boolean notify(Event event, boolean capture)
From source file:net.dermetfan.gdx.scenes.scene2d.ui.ScrollPaneSnapAction.java
License:Apache License
/** @param root the Actor from which to start searching downward recursively */ private void findSlots(Actor root) { searchEvent.setTarget(pane.getWidget()); root.notify(searchEvent, false); if (root instanceof Group) for (Actor child : ((Group) root).getChildren()) findSlots(child);// w ww.j a v a2 s . c o m }