Download Article
The ultimate guide on development for first-time game makers
Download Article

Designing and programming a video game may seem like a colossal project, but it has never been easier than it is now. With the widespread growth of gaming, being an independent game developer (dev, for short) is a breeze. So long as you take the time to learn a game engine, you don’t even need to code anything! In this article, we’ll cover everything you need to know about building a video game from the start to finish.

Things You Should Know

  • Craft a design and vision document to help you guide the development process.
  • You do not need to learn how to code to make a game. Instead, learn a game engine, like Unity, to build your game with preconstructed assets.
  • Use pre-rendered stock sounds, animations, and objects if you don’t want to manually create all the art for the game.
Part 1
Part 1 of 6:

Developing Your Idea

Download Article
  1. How.com.vn English: Step 1 Choose the genre of game you want to make.
    While every successful game is unique in its way, almost all of them fit into a specific genre. Decide what kind of game you want to create, and look at what other games in the same genre do.[1] Some common genres include:
    • Arcade games and platformers
    • Shooters (first or third person)
    • Puzzle games
    • Racers
    • Adventure games, RPGs, and JRPGs
    • Visual novels
    • Tower Defense
    • Horror
    • Fighters
    • Survival
  2. How.com.vn English: Step 2 Pick your platform and controller scheme.
    The platform that you choose to develop your game will significantly impact the way you develop it. All games are developed on a computer, but the intended platform influences the way players control the game.[2] Smartphone games are typically touch-and-tilt-based, PC games typically use a keyboard and mouse, and console games use gamepads. Note that most commercial PC games also support gamepad.
    • There are exceptions to all these rules, but you will generally find it easier to design the game around a specific control method.
    • If you want to make an iPhone game, you will need to submit it to the Apple store from a Mac computer.[3]
    • However, one exception is the Godot Engine which also allows you to create for iPhone on Linux which is useful if you don't have a Mac.[4]
    • Another exception is Nintendo. You cannot develop with Nintendo assets without prior consent, and porting games to the Nintendo is extremely difficult.[5]
    Advertisement
  3. How.com.vn English: Step 3 Compose a basic preliminary design document.
    Write at least one page that describes the basic plot, the heart of the gameplay experience, and the main gameplay loop. It contains the fundamental concepts of your game and will allow you to see if your idea is viable as a video game.[6]
    • The main gameplay loop refers to the very root, basic behavior players will do. In Halo or Call of Duty it’s “move and shoot things.” In Animal Crossing it’s “explore and find resources.” What will your players, at their most basic level, be doing?
  4. How.com.vn English: Step 4 Choose a core philosophy to guide the tone and mood.
    This statement will serve as the motivating force behind the game. These are very simple statements that get to the heart of what the game is. Revisit it often to ensure that your game is still meeting its basic goals.[7] Some example core philosophies:
    • This game simulates a space station economy and will make players feel like a trader.
    • This game lets you play as a living car and is about going fast.
    • This game is about testing the player's reflexes and keeping them on their toes.
  5. How.com.vn English: Step 5 Write down any features you want to include.
    The features are what sets your game apart from others in the same genre. Start by listing your ideas and concepts. A feature is basically any element of gameplay outside of the core gameplay loop. Turn those concepts into action-driven sentences. Shoot for between 5-15 features (the more complex the game, the more features you’ll have). For example:
    • Concept: space station construction. Feature: Build and manage your space station.
    • Concept: damage from asteroids. Feature: Struggle to survive against environmental hazards, including asteroids, solar flares, and comets.
    • Writing down your features first will allow you to flesh each one of them out later in the design document. Having your features listed in the beginning will keep your project focused and prevent “feature creep,” where ideas keep getting added later on in the process.
    • Continue revising your features until you’re satisfied that they represent the game that you want to make.
  6. How.com.vn English: Step 6 Take a break and revisit your design doc periodically.
    Put the preliminary design in a drawer and try not to think about it for a week or two. You want to be able to go back to it with a fresh perspective. This helps you determine which elements of your game idea need revisions, additions, or if you need to go back to the drawing board and make bigger changes.[8]
    • If you’re hyper-confident in your design, feel free to get right into the next steps!
  7. Advertisement
Part 2
Part 2 of 6:

Writing a Team Plan (Optional)

Download Article
  1. How.com.vn English: Step 1 Develop as many of the nitty-gritty details as you can.
    The team plan design document is the backbone of your video game if you’re working with a team. It contains detailed descriptions of your game's mechanics, plot, setting, aesthetic design, and more. The format of the document is not as important as the content.[9]
    • Important note: A fully fleshed out team plan design doc is only necessary if you’re working with other people (programmers, artists, writers, etc.) so that you all stay on the same page as you work on different parts of the game. Skip this section if you’re an individual dev.
    • Not every game has a team design document, and no two design documents will look alike. Use these steps as a guideline, but feel free to tailor your document to your game and team’s needs.
  2. How.com.vn English: Step 2 Formulate the table of contents to provide an overview.
    Every single aspect of the game needs to be addressed in the table of contents. The only thing you don’t need to include is the story, unless the story is fundamentally connected to the mechanics of the game.[10]
    • Approach the table of contents like it’s a game manual. Start with broad sections, such as Character Creation, Combat, and Main Interface, and then flesh each one of these sections out with subsections.[11]
    • Think of the table of contents as an outline for the game. You will be going into much more detail for each entry in the table
  3. How.com.vn English: Step 3 Fill out each section of your document.
    After you have the table laid out, start expanding on the mechanics. Take the time to go into detail so that there is no confusion when you start programming. Explain each mechanic in full detail so that there is no confusion when it’s time to implement it.[12]
  4. How.com.vn English: Step 4 Run the doc by your team and make revisions as needed.
    Depending on your approach, game design can be a very collaborative process. Insight from others can help keep your game focused, and can point out areas that aren't as well thought out.[13]
    • Don’t force through design elements that your team isn’t on board with. Game development is a collaborative process, and you and your team must align on a vision.
  5. Advertisement
Part 3
Part 3 of 6:

Programming Your Game

Download Article
  1. How.com.vn English: Step 1 Choose the game engine you’ll use and download it.
    The engine is the underlying base of the game. It contains a host of development tools that ease the creation of a game. It is much more time-efficient and less complex to create a game using an existing engine than to create a new one from scratch. [14] Here are the most popular options:
    • Unity – The single most popular engine available today. A 3D engine popular for its ease of use and portability. Unity also supports 2D game development.
    • Unreal Engine – An engine that can be adapted to a wide range of uses. Many AAA games were built on this engine. It also has visual scripting called Blueprints by default.
    • Godot Engine – A Free and Open Source Engine that has become popular recently. More features are added by contributors on every release. Has Visual Scripting and supports multiple programming languages. Can do both 2D and 3D.
    • GameMaker: Studio – One of the most popular 2D game engines. Also, it’s considered very easy to learn compared to other engines.
    • RPG Maker Series – A scripting engine designed for 2D RPG is the traditional JRPG style, like Pokemon.
    • Source – A very popular 3D engine by Valve that is consistently updated and modified. We don’t recommend Source for first-time game makers unless you’re familiar with a coding language, since it’s pretty complicated.
  2. How.com.vn English: Step 2 Learn your engine or hire someone who knows it.
    Every game engine is different. Even the most basic engines will require time to understand how to manipulate them, so once you’ve downloaded the engine of your choice, complete the tutorials it includes. If you don’t want to program the game yourself, hire a developer to do the coding for you.[15]
    • The only extremely complicated engine is Source. Every other option we’ve mentioned above will take around 1-3 months to learn, so don’t get too overwhelmed.
    • You can hire an experienced freelance developer on sites like Fiverr or Upwork.
    • This will be the beginning of your team-building phase. If you are unable to program, your first hire will need to be a programmer. You can worry about art and sound later; you need to be able to come up with a working prototype before the project can continue
  3. How.com.vn English: Step 3 Build a prototype of your game in the engine.
    Once you are familiar with the engine you have chosen, build a prototype of the game that includes the core gameplay loop. This prototype will serve as a basic test of the core functionality of the game. You don't need graphics or audio for the prototype, just simple placeholders (like a cube or a stick figure) and a small test area in the engine.[16]
    • Test and refine the prototype, again and again, to ensure that it is functional. Make note of anything that doesn't work or feel right, and readdress the mechanics involved.
    • There will always be features that seem easy or feasible that just won't work when it comes time to make the game. Expect the prototype to change multiple times as you tweak what works and what doesn't.
  4. How.com.vn English: Step 4 Refine the controls every time you add features.
    The most basic functionality of the game is the player interacting with the game through some sort of control input. Use the prototype to ensure that the controls are as perfect as they can be. Every time you add game elements, features, or mechanics, re-test your controls to make sure everything works as intended.[17]
    • Games with poorly-implemented controls will frustrate players. Games with perfectly executed controls will be rewarding to a player's skill and feel intuitive to use.
  5. Advertisement
Part 4
Part 4 of 6:

Creating or Borrowing Assets

Download Article
  1. How.com.vn English: Step 1 Consider the amount and type of art your game needs.
    Depending on the scope of your project, your art needs can vary significantly. Some games only require simple shapes and colors, while other games feature complex worlds created by vast teams of artists and sound designers. Be realistic with your goals for the assets in your game, and hire or plan on a work scope accordingly.[18]
    • Most independent games are created by small teams, oftentimes one person. If you are doing the entire project yourself, you have two realistic options:
      • Create the art yourself: Are you skilled in Photoshop and Illustrator? Do you love to draw? If so, this is a viable option.
      • Use pre-rendered assets: Every game engine has assets you can use in your game. You can also buy and download asset packs online at sites like GameDevMarket.
  2. How.com.vn English: Step 2 Choose a program to make your art if you’re going DIY.
    Depending on your art style, there are different programs you can use to create your art assets.[19] Some of the more popular programs include:
    • Blender – This open-source program is one of the most popular 3D modeling solutions around. There are endless tutorials available online that can show you how to get up and running quickly.
    • PhotoshopUsing Photoshop is usually mandatory if you want to add 3D textures. It is expensive, so if money is a concern, consider trying GIMP, the open-source, free alternative to Photoshop. GIMP has most of the same functionality.
    • Paint.net – This is an open-source alternative to Paint Shop Pro, and will allow you to create 2D art with ease for free. This program is especially useful for creating 2D pixel art graphics.
    • Adobe Illustrator - This program is good for vector art. It does cost money, so consider trying trying Inkscape, the open-source, free alternative to Illustrator.
  3. How.com.vn English: Step 3 Create or choose the key art you’ll need for major assets.
    In order to start getting a feel for the visual aesthetic of the game, start by composing or selecting the art for the main characters, key items, and major world objects (like weapons, cars, items, etc.).[20]
    • There are a variety of styles that you can use. Pixel art (intentionally retro) is one of the most common styles employed by independent developers. This is because pixel art is typically the fastest and least-expensive art to produce that still results in a “good looking” game.
    • If you have more time and manpower, you can consider using 3D art. Basic 3D modeling is possible with a one-man team, but more complex details will take significantly more time. 3D models need textures on top of the model.[21]
  4. How.com.vn English: Step 4 Design the world, or structure, of the game.
    Once you have the key art figured out, start constructing the assets for the game world. Depending on the style of game you are making, you may need to create levels or playing areas. If you are making a puzzle game, then you can start designing your puzzles.[22]
    • There’s no right or wrong way to go about developing and constructing the world for your players.
  5. How.com.vn English: Step 5 Assign your audio...
    Assign your audio assets and record dialogue, if necessary. Sound design plays an essential part in the immersion when playing a game. Whether or not you have music, when and how you use sound effects, and spoken dialogue all affect the way the player connects with the game. Either add sound effects from a pre-packaged folder you downloaded, or record the sounds and dialogue yourself.[23]
    • You can find millions of free pre-recorded sounds at Freesound, ZapSplat, or Pixabay.
    • You can always outsource the audio work to an audio programmer if you don’t want to deal with it.
  6. Advertisement
Part 5
Part 5 of 6:

Putting It All Together

Download Article
  1. How.com.vn English: Step 1 Playtest your game as much as possible.
    As you build each aspect of the game, keep playtesting it to ensure that it remains fun, cohesive, and functional. If an area or idea feels weak or poorly implemented, refine it or cut it. Once all of your levels or puzzles or play areas are complete, play through it to make sure it is fun from beginning to end.[24]
  2. How.com.vn English: Step 2 Fix bugs as you find them.
    As you’re playtesting, you’re likely going to come across glitches, bugs, and other problems with your game. Finding the bugs in your game and squashing them is essential to making sure that as many people can play it as possible. Whenever you find a bug, document it. After each playtest, go into the dev program and fix the bugs.[25]
  3. How.com.vn English: Step 3 Limit test by trying to break your game to find issues.
    Every conceivable way a player can interact with the game needs to be accounted for. Make sure that your game rules can't be bypassed or broken by attacking those rules as much as possible. If you’re building a racing game, try driving as fast as possible and collide with game objects. If it’s a shooter, try moving and shooting as erratically as possible to see what happens.[26]
    • Bug testing and limit breaking can take a significant amount of time, even as much as the game took to create. The more people you can get to help with testing, the more problems you will be able to find and fix!
  4. How.com.vn English: Step 4 Ask other people to playtest the game and give you feedback.
    Invite some friends over and ask them to try your game. Watch how they approach your challenges and how they interact with your game world. Chances are they will try to do things that you never even thought someone would do. Use their gameplay as feedback and make additional changes as needed.[27]
    • For example, if a bunch of your friends keep trying to reach an area that they’re not supposed to go to, it’s a sign that the game’s instructions or the level design are creating confusion.
  5. Advertisement
Part 6
Part 6 of 6:

Publishing Your Game

Download Article
  1. How.com.vn English: Step 1 Check with your engine on the rules for releasing your game.
    Each engine supports specific platforms, and some require different licenses to release on different platforms. For example, with Game Studio, you can release on Windows and Mac OS, but need to upgrade to the Pro version and pay an extra fee to release mobile versions.[28]
  2. How.com.vn English: Step 2 Hype your game up to attract attention online.
    Once you are nearing your game's release, start trying to attract some attention. Release some screenshots and video clips of your game in action on popular gaming forums, like Reddit. Contact gaming news sites and let them know that your game will be releasing soon (be sure to include how to get it, how much it costs, and a summary of the game).[29]
    • Send copies of your game to popular streamers and influencers and partner with them to get them to promote your game.
    • Create a game website during production so that you can start building followers. Host a forum or reddit AMA to get fans talking to each other. Regularly update your site to draw more attention.
  3. How.com.vn English: Step 3 Upload the game to your platform of choice.
    Some independent developers will host the game on their website, but you may find that demand costs you a significant amount in hosting fees, and some hosts can't support the load that a successful game requires.[30] So, upload the game to a popular platform so people can play it. The most popular outlets for releasing independent games on PC, Mac OS X, and Linux:
    • Steam (Steam is easily the most popular platform today).
    • Epic.
    • GOG.
    • Itch.io
    • Mobile games typically need to be released through their prospective stores (Apple App Store, Google Play Store, etc.). The same goes for console games (Xbox Live, PlayStation Network, etc.).
    • Different services will take different cuts on the sale of your game. Research each one to see if they are right for you.
  4. How.com.vn English: Step 4 Support your game and interact with the community.
    Once your game is released, support it as much as financially possible with bug fixes and more content. The age of digital distribution means that games can be updated quicker than ever before. There are bound to be bugs that appear once the population at large has access to your game. Do what you can to fix these as soon as possible. Respond to queries and reviews online to let players know you appreciate them.[31]
  5. Advertisement

Community Q&A

Search
Add New Question
  • Question
    Will pixel graphics work well?
    How.com.vn English: Community Answer
    Community Answer
    It depends on the type of game you are creating, so in some cases, yes, they can work well.
  • Question
    Are there companies who can help me build a game?
    How.com.vn English: Community Answer
    Community Answer
    Yo can make prototype of your game and submit it to a game company. Otherwise, you'll have to assemble a team of local programmers and designers.
  • Question
    What software can I use to make my own game?
    How.com.vn English: Community Answer
    Community Answer
    Try Unity, Game Maker, Unreal 4, RPG Maker, UDK, or COCOS 2DX. There is a lot of good game-development software out there.
See more answers
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Video

      Tips

      Tips from our Readers

      • Do not be afraid to ask others for help and feedback. Many experienced developers are happy to mentor newcomers if approached respectfully. Just be sure to do research beforehand so you are not asking easily searchable questions.
      • Consider releasing a playable early version of your game to start building hype and getting feedback. But be warned this can also set expectations, so only show it when you are confident the core is fun and engaging.
      • When developing an original idea, remember to avoid basing your game too closely on an existing one without permission. Heavy inspiration is fine, but copying mechanics or assets directly could lead to legal issues.
      • Remember to take regular breaks during long work sessions. Game creation requires immense mental focus and can quickly lead to fatigue or burnout otherwise. Step away periodically to refresh.
      • Persistence is key. Most games take multiple iterations over months or years to become great. Stay determined through setbacks and keep polishing until the game feels ready.
      • Simple games are often best when starting out. Overly complex ideas take large teams and budgets. Start small and focus the scope down to the most essential elements.
      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      1. https://bbrathwaite.wordpress.com/2008/11/30/creating-a-game-design-document/
      2. https://www.gamasutra.com/blogs/LeandroGonzalez/20160726/277928/How_to_Write_a_Game_Design_Document.php
      3. https://bbrathwaite.wordpress.com/2008/11/30/creating-a-game-design-document/
      4. https://www.nyfa.edu/student-resources/forming-solid-indie-game-development-team/
      5. https://dzone.com/articles/5-best-video-game-development-tools-for-indie-game
      6. https://medium.com/ironequal/8-gamedev-unity-essential-beginner-tips-a80d80a8ae78
      7. https://www.gamesradar.com/how-to-make-a-videogame-with-no-experience/
      8. https://gamerant.com/electronic-arts-patent-quality-assurance-testing/
      9. https://dreamfarmstudios.com/blog/game-ready-asset/
      10. https://www.techradar.com/best/best-drawing-and-painting-software
      11. https://www.perforce.com/blog/vcs/game-asset-creation-workflow
      12. https://www.gamefromscratch.com/post/2013/06/11/Creating-art-for-your-game-when-you-are-a-programmer.aspx
      13. https://www.emwelsh.com/blog/video-game-world
      14. https://www.gamedesigning.org/learn/video-game-sound/
      15. https://www.gamedeveloper.com/design/best-practices-five-tips-for-better-playtesting
      16. https://www.gamedeveloper.com/design/best-practices-five-tips-for-better-playtesting
      17. https://gamedevacademy.org/game-playtest-tutorial/
      18. https://gamedevacademy.org/game-playtest-tutorial/
      19. https://resources.unity.com/games/five-foundations-for-multiplatform-games
      20. https://www.forbes.com/sites/quora/2018/08/10/what-are-some-good-marketing-strategies-for-an-indie-video-game/#38d6365b588c
      21. https://www.gamesindustry.biz/a-beginners-guide-to-bringing-a-game-to-market
      22. https://gamemaker.io/en/blog/export-with-gamemaker

      About This Article

      How.com.vn English: Eric McClure
      Co-authored by:
      How.com.vn Staff Writer
      This article was co-authored by How.com.vn staff writer, Eric McClure. Eric McClure is an editing fellow at How.com.vn where he has been editing, researching, and creating content since 2019. A former educator and poet, his work has appeared in Carcinogenic Poetry, Shot Glass Journal, Prairie Margins, and The Rusty Nail. His digital chapbook, The Internet, was also published in TL;DR Magazine. He was the winner of the Paul Carroll award for outstanding achievement in creative writing in 2014, and he was a featured reader at the Poetry Foundation’s Open Door Reading Series in 2015. Eric holds a BA in English from the University of Illinois at Chicago, and an MEd in secondary education from DePaul University. This article has been viewed 1,057,817 times.
      53 votes - 70%
      Co-authors: 200
      Updated: April 24, 2024
      Views: 1,057,817
      Article SummaryX

      If you want to make your own video game, start by picking a genre, such as adventure or RPG, and decide which platform you want your game to be on, like PC or mobile. Then, write out a preliminary design for the idea of your game, with a few core concepts and corresponding key features. For example, if one of your concepts was space exploration, one of your key features could be a zero-gravity construction task. Once you have these ideas, you can make a design document and begin programming to test the game! For tips on fleshing out your design and coding the game, read on!

      Did this summary help you?

      Thanks to all authors for creating a page that has been read 1,057,817 times.

      Did this article help you?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement