Question: Do you need a game engine to make a game?

Answer

No, you don't strictly need a game engine to make a game. However, using a game engine can greatly simplify the process and allow you to focus more on the gameplay, art, and story.

Without a game engine, you would need to write all of the code yourself from scratch for everything including rendering, physics, audio, and more. This is not only a lot of work, but also requires a broad range of expertise in various complex fields such as 3D graphics and physics simulation.

If you decide to develop a game without an engine, here's a simple example of how you might create a window and render a basic 2D shape using OpenGL in C++:

#include <GL/glut.h> void display() { glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_TRIANGLES); glVertex2f(-0.5f, -0.5f); glVertex2f( 0.5f, -0.5f); glVertex2f( 0.0f, 0.5f); glEnd(); glFlush(); } int main(int argc, char** argv) { glutInit(&argc, argv); glutCreateWindow("OpenGL Setup Test"); glutDisplayFunc(display); glutMainLoop(); return 0; }

On the other hand, if you use a game engine like Unity or Unreal, many of these features are provided out of the box. For example, in Unity, creating a sprite on the screen could be as simple as dragging and dropping an image into your scene in the editor.

The choice between using a game engine or not depends largely on your game's requirements, your team's skill set, and the resources you have available. However, for most game developers—particularly those just starting out—a game engine is an invaluable tool that can save a lot of time and effort.

Was this content helpful?

White Paper

Free System Design on AWS E-Book

Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.

Free System Design on AWS E-Book
Start building today

Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement.