For a server authoritative game, most of the controls I’ve implemented use reliable RPCs when input is started and completed. This works well for boolean controls that only have on and off states.
So what do you use for analog controls? Do you simply send an unreliable RPC for every ETriggerEvent::Triggered, or do you replicate and set a float (or FVector2D) based on player input?
Is my first implementation even the “proper” way to implement on and off states, or should I just replicate a boolean?