I am trying to ease values in and out and the function always returns me "1"
I'm declaring some variable in the upper scope like so
var my_var = 100
then in a game loop I run
my_var = ease(my_var, 1.1)
print(my_var) #this is always 1
am i doing this wrong? I'm on godot 3.1