Interpolation and Bounciness

Options
Hi, i have a ball game, similar to pinball but with topdown view, and player controlled ball. With interpolation ON the player ball, the X and Z axis movement are smooth like they should be, but Y axis bounce looks rediculously fake. With interpolation OFF, the bounciness is realistic, but the X and Z axis movement is jerky at best.

Is there a way to interpolate X and Z axis, and not interpolate the Y axis?

Comments

  • JeffersonHenrique
    Options
    Hi @feathers, yes, it is possible, you could check TSTransform, there is a piece of code there responsible to do interpolation, you may change that if you wish. Another thing, did you try to set on Y constraints on TSRigidBody, maybe, just maybe, could lead to you desired effect.
  • feathers
    Options
    Cool, thanks for the reply, will try that out.