The widget works correctly in single player. In multiplayer the mouse ignores the button, there is no color change in hover, it cannot be clicked or dragged, it stops working on client and server.
Is there anything else I need to do to make it work?
Video replicating the problem. I can not continue progressing, I have already tried everything and there is nothing more information on the internet.
Solved.
The BeginPlay event is executed 1 time for each character created, which means that if there are 2 it will run 2 times, But !!! Run 2 times from the server and 2 times from the client, since there are 2 characters on both sides. The solution is to use “Is locally controlled” to execute it only from the owner side of the character.
2 Likes