Process for Creating a Game

Hi everyone!

I have a game idea and wan to start developing it, but I am a bit stuck with where to start. What is the usual process when developing a game?

Should I create the basic gameplay infrastructure first, and then the models? Or first the environment?

I know there could be different ways to go about this, but what is the most common and best way?

Thanks,

Always start with the basic gameplay, because everything else will depend on that and you might need to alter some art to your gameplay style. For example in map design alot of people use blockouts until the layout is set and only then they’re applying art to the map.

There are different approaches, but here is what works for me:

Create a basic prototype of your idea that represents a “vertical slice” of the final game - meaning, create most of the functionality / gameplay features FIRST before you worry about the art and level design. Create a “training” level where all your game play features can be tested (climbing, swimming, AI test, etc). Do most of your work there and once you polish the gameplay then import your models, etc.

I also use this phase to create “tools” to help me design the levels easier. For example, if Im creating a platformer, then I create helper blueprints that can be used to create different types of platforms. I find this helps me make quick changes and when the time comes, I can create levels very quickly.

If you are interested in this process, check out my devlogs for my last game jam game - Verto Machina. If you watch the playlist you can see how I started with the basic idea and then flesh out gameplay on the same level, and eventually create the levels.

Hope this helps!

1 Like

I’m a programmer so gameplay and stuff is most important to me.
Then environment, then animations, then art, then graphics and post processing

In all reality, you should be able to play a fun game with only primitive objects.

Yeah, I would agree with creating a rough prototype first. Even with cubes or placeholder art. I’ve had a number of game concepts that sounded cool in my head, but, after getting a playable prototype built, I realized they didn’t work, or weren’t fun, etc. and you can save yourself a lot of time with concepts that won’t go anywhere. But, if the prototype is fun, you have some confidence in spending more time designing the mechanics, working on art, etc. on a solid foundation.

  1. Idea.
  2. Concept Art: visual style of the game (drawings, digital paintings, photo references).
  3. Gameplay Concepts: how will the game play; gameplay mechanics; game design document.
  4. Gameplay prototyping (Blueprint or C++): simple playable game with core mechanics intergrated into it and placeholder items.
  5. Refine and Finalize Gameplay Mechanics.
  6. 3D Static Mesh Creation (3d models, UVing, texturing, Materials, export/import).
  7. Animations.
  8. Level Design (BSP prototyping, gameplay mechanics, scripting, AI, play testing, detailing with static Meshes, lighting).
  9. Networking.
  10. Optizimizing/Performance.
  11. Packaging.
  12. Release.