C# Smoothing Out transform.Translate

Hi everyone, is there a way to smooth out transform.Translate? I have a script where a gameobject is moved +1 in the y axis transform.Translate(0,1,0); but it feels very jagged and unnatural.

Have a target position rather than changing the transform.position directly and then use an update function to Lerp towards it - or SmoothDamp etc.

#SmoothPosition.cs

   using UnityEngine;

   public class SmoothPosition : MonoBehaviour
   {
          public Vector3 targetPosition;
          public Quaternion targetRotation; //Optional of course
          public float smoothFactor = 2;

          void Update()
          {
                transform.position = Vector3.Lerp(transform.position, targetPosition, Time.deltaTime * smoothFactor);
                transform.rotation = Quaternion.Slerp(transform.rotation, targetRotation, Time.deltaTime * smoothFactor);
          }
   }

Then rather than doing transform.position = something:

     gameObject.GetComponent<SmoothPosition>().targetPosition = something;

Though preferably cache it to avoid too many GetComponent calls.

// if youre using left/right key try this

int speed = 10;
transform.Translate(Vector3.left * Input.GetAxis("Horizontal") * speed * Time.deltaTime);

// Input.getaxis() value is 0.0 - 1, it accelerate to 1 if you pressed left/right key and decelerate if released the key.

try to create variable and accelerate and limit its value to 1.

This worked great for me!

Try this

    public Transform target;
    public float speed = 20f;

    void Update() {
        float move = speed * Time.deltaTime;
        transform.position = Vector3.MoveTowards(transform.position, target.position, move);
    }