Even though I graduated in physics (so I should literally know everything about vectors and vector spaces) I somehow forget to take advantage of vectors in Godot.
For instance, I introduced an enum for directions like
enum DIRECTION{UP, DOWN, RIGHT, LEFT}
instead of exploiting vectors like
if condition:
velocity.x+=1
That feels embarrassing.