This is an exploratory topic, meaning that we're just exploring the topic :P. It occurred to me that there are many "types" of movement than the common types. The goal is simple, create a list of all the types of movement we can think of. Let me know if I missed any :
Teleporting
x = teleport_location;
"Smooth Movement"
"Smooth movement" is just teleporting rapidly in small amounts, based on the current location.
x = x + 1
h / vSpeed Movement
Movement based on a variable which contains the rate of movement.
x = x + hSpeed;
(more to come)