openskills.info
Game Engine Fundamentals logoOpen Course

Game Engine Fundamentals

A game engine is software that provides the runtime and tools for building interactive games. It organizes scenes, assets, input, rendering, physics, audio, and builds so you can concentrate on the rules and experience of your game.

itSoftware engineering

Don't Panic — Game Engine Fundamentals

A game engine is the reusable machinery that turns a project's rules, assets, input, and passing time into something a player can run. It does not arrive with your game inside it, mercifully. The game still needs its own rules, content, and decisions; the engine supplies the busy infrastructure that would otherwise demand a great many repeated arrangements of wires.

The first useful idea is composition. A level, player, menu, or enemy can be a scene: a reusable bit of structure. Inside it, smaller parts take jobs such as drawing, collision, sound, camera control, or movement. Godot calls these parts nodes. Unreal uses Actors and Components. The labels are different hats on the same coat rack, which is inconvenient only until you stop asking them to agree.

The second idea is the game loop. Input arrives. Game state changes. Simulation advances. Rendering prepares a frame. Then a player sees the result. The surprising bit is that the frame rate and the physics step are not one clock wearing two watches. A game can render at a changing rate, while physics needs an explicit update model because collision and motion affect the rules.

Give input actions names such as move left or interact, rather than making the rule about one key. Give collision categories names too. A layer says what an object is; a mask says what it tests. This sounds like filing labels on a cabinet until an object collides with the wrong thing, at which point the cabinet develops a personality and refuses to discuss it.

Choose an engine by the game that must ship: target platforms, 2D or 3D scope, team skills, language support, asset workflow, licensing, and deployment needs. Then make a vertical slice: one controllable object, one interaction, one playable scene, and one target build. It tests the route from scene to device before the project grows sufficiently confident to hide its problems behind scenery.

Continue with the Intro for the full architecture and tradeoffs, the Slides for the component map, and the Cheatsheet for the runtime and collision vocabulary. The Practice Reference turns the model into a Godot project. The Exercise asks that project to survive an exported build, because a build is where the engine stops being a diagram and starts being an argument with a real device.

Where this skill leads

Relevant careers

See how this topic contributes to broader role-level skill maps.

Sources