Hey,
I've been working on a physics-based player in PhysX and right now I'm trying to get networking to work. Right now I send input to the server and simulate physics locally. Then every 100ms the server will send the last input that it has processed as well as the current position, velocity, rotation and angular velocity. The client then checks if what it calculated roughly agrees with what the server just sent. If it doesn't, the client rewinds to the server's snapshot and replays all of the input and re-simulates the physics.
Sometimes the corrections can be quite significant. My goal is to just instantly snap the physics actor to the new position and do some kind of visual smoothing, but I'm unsure what the best approach should be. Any ideas?