Back to Developer Roadmap

Movement

src/data/roadmaps/game-developer/content/[email protected]

4.0929 B
Original Source

Movement

In the context of game development and game API (Application Programming Interface), movement refers to the process of changing the position or orientation of game objects. This involves using programming functions to control objects' movement like walk, run, jump, fly, or any such physical action in the game world. Movement is at the core to creating the dynamics of a game and is critical to both game physics and game logic. Different game engines offer different ways for handling movement. In some APIs, this process could be as simple as setting a new position directly, such as object.position = new Vector3(5, 10, 0). Meanwhile, in others, more complex methods involving real-world physics are required, such as applying forces or altering velocity.

Visit the following resources to learn more: