I have more than one actor (for a local coop game) that need to receive key events (e.g. Player 1 uses arrow keys, Player 2 uses WASD etc...). If I just add Actors to a Stage, they don't receive key events through the InputListener, and if I do this:
stage.setKeyboardFocus(p1);
stage.setKeyboardFocus(p2);
Only Player 2 receives key events, of course. How can I have two (or more) actors receive key events?