Brand new to actually using godot, Looking for the name of a keyword.

Godot Version

4.4.1

Question

What keyword would I need to use to ease the previous mouse position to the current mouse position? I’ve already tried ease, Interpolate, Vector2.Interpolate and more that i cannot remember.

Are you searching for lerp()?

Note that these methods return new values, so to interpolate a position you would need

position = position.lerp(to, 0.5)

Also Vector2.move_toward