I have a local multiplayer game than can be player with up to 4 players, the game is intended to be played with gamepads, but keyboard+mouse should be an option too.
Right now there is no “easy” way of doing this. As the “skip assigning gamepad to player 1” can’t be changed at runtime in blueprints. And you can’t create a 5th player controller in blueprints either.
So my problem here is that UE4 only allows for either keyboard+mouse and 3 gamepads, or 4 gamepads with no keyboard+mouse, as they would both be controlled by player 0, which is pointless.
Changing “skip assing to player 1” would allow me to toggle between one configuration and the other, and being able to create a 5th player controller would simply allow me to assign arbitrary id as players press a key to enter the game.
Is this a BP only problem? can C++ work around these limitation?
Please help =)