Search code examples
libgdxscrollpane

LibGDX: How to make the ScrollPane scroll down automatically?


What I've tried:

scrollPane.setScrollPercentY(100);

and

scrollPane.setScrollY(1);

or

scrollPane.setScrollY(0);

But it only scrolls to the top, not to the bottom.


Solution

  • Alright, it worked that way:

    scrollPane.scrollTo(0, 0, 0, 0);
    

    Hope it helps someone!