I just want my character animations to replicate. Currently, they replicate from server to client (shown on both) but not from client to server (shown on client only).
Here is my Character BP logic for replication (all relevant variables are replicated)
Seems like you are trying to create the equivelent of event graphs in the animinstance on the character level.
Why not just pass the used bools to the anominstance and use transitions based on these bools to change played animations.
Please don’t use tick to sent information to the server. It will flood your network traffic and not work.
Try having an action enum that you can change and have if call an on rep replication that will trigger the state change passing in parameters to the animinstance and there drive the animations with event graphs and animation states