In my VR FPS, the camera is attached to the players rigidbody, which is moved by physics forces in FixedUpdate().
my framerate is 90FPS and my physics timestep is 0.01.
when the player is in motion, grenades which are in motion jitter. If the player is standing still and throws the grenade, the grenade moves smoothly. Only when both the player and the grenades are in motion, do the grenades seem to stutter.
the grenade rigidbody is given a velocity (not a force) upon release, in a single frame.
the player’s rigidbody is set to interpolate, non-kinematic.
the grenades rigidbody is set to interpolate, non-kinematic.
Please let me know if you have some insight, a video can be provided if the explanation is not clear, thank you!
Hi we issue the same problem. But we already put the camera in LateUpdate but it didn’t worked out.
Sorry I’m a bit confused now which one could work out for us (I’m just the graphics guy so not very experienced with the coding)