PDF download Download Article
Dive into the world of video game design and development
PDF download Download Article

Today, more people are playing video games than ever before, which means there's a lot of room for new people to come in and make something great. While making a video game is somewhat complex, it's also incredibly fun and rewarding. We'll show you how to get started, from learning to code to releasing the game.

Things You Should Know

  • Get comfortable with common programming languages, like C++ or Java, as well as graphics software like Blender.
  • Choose a game engine that complements your game's style and needs, and build a prototype in the engine.
  • Program, polish, and playtest your game with the help of a team or volunteers before releasing it on your desired platforms.
Part 1
Part 1 of 2:

Setting Up for Success

PDF download Download Article
  1. Video game design requires lots of different skills, coding or scripting. It requires programming, art, animation, music, sound design, testing, production, financing, and more. All of this takes many hours to develop. Especially if you don't have a huge studio team. You need to understand what you can accomplish with the resources you have and within the time you have. If you're not realistic about what you can do, then you're likely to quickly become disappointed and give up. We don't want you to give up!
    • If you've never designed a game before, start simple. Your first game should be a learning experience, not a masterpiece. The goal for your first game should be to make something that is playable as quickly as possible. Even if it's only a one-room level, with bad collision detection. Don't give up! Be proud of it. Your next game will be even better. Soon you'll be making games people want to play. [1]
    • Consider going to work for a professional gaming company before developing your own game. You'll have a much easier time making a successful game and getting investors if you have the experience, education, and a well-known game attached to your name. This might require going to school or acquiring some skills, but it's still working towards your goal and it will be worth it in the end.
  2. While you can use a game engine to develop most of your game with little programming, know how to program gives you more control of your game development. There are lots of programming languages you can learn. You can take some classes to learn to program, or do some online tutorials. Games like Code Monkey, Code Combat, and Robocode are games that are designed to teach you how to program. [2] The following are some programming languages you can learn:
    • C++ : C++ is one of the most common programming languages. It's also one of the most difficult languages to learn, but it's worth it. C++ gives you more control over the computer hardware and graphical processes. Many game engines, such as Unreal, only accept information written in C++
    • Java: Java is another common language that is used in a variety of applications. It is similar to C++, which makes it easy to learn alongside C++
    • SQL : SQL stands for Structured Query Language. It is used to interact with online databases. If your game requires players to create an online account, or interact with other players online or features, you will need a database to manage all the user information. You can use SQL to create and manage the database.
    • HTML , CSS, JavaScript: HTML/HTML5, CSS/CSS3, and JavaScript are all web development languages. They're all pretty easy to learn, but not used very often in game development. However, if you are new to game development, you can use these basic languages to make web browser-based games.
    Advertisement
  3. If you're not hiring a pro to do your graphics works, then you've got a lot of studying ahead of you. You'll need to learn to work a number of complex graphics programs, but you can do it! Photoshop, GIMP , Adobe Illustrator , Blender 3D, 3DS Max are good places to start if you want to make the visual elements of your game.
    • If you don't think that you are a very good artist, consider using a minimalist art style. Many popular independent games are designed using an 8-bit pixel art style. Not only is it easier to draw, it evokes a sense of nostalgia in many gamers. Other games are designed using simple geometric shapes.
  4. The game engine is what makes a game run. It renders the graphics, animation, and sound, it processes the scripting, physics, and so much more. If you are talented enough, you can design your own game engine. You'll probably want to save some time and find an existing game engine. There are lots of powerful game engines you can choose from. Many of them are free to download and use. Most of them require you to purchase a license to get all the features and pay a royalty on the games you publish. The following are a few game engines you can look into:
    • Unity: is a powerful game engine. It supports both 2D and 3D games and is not too difficult to learn. Many mobile and independent games are designed using Unity.
    • Unreal 4: Unreal is another popular game engine. It does have a steep learning curve and is not recommended for beginner game designers. However, it is a powerful game engine used to create stunning visuals. Many popular games, including Fortnite, Mortal Kombat 11, and Final Fantasy VII Remake are designed in Unreal 4.
    • Game Maker Studio 2: Game Maker Studio is a good game engine for those who don't have a lot of experience working with game engines. It's mostly used in making 2D games and has an interface that's pretty easy to use.
    • Scratch: Scratch is an online game maker developed by MIT as an educational tool. If you have no experience with game design at all, this may be a good place to start.
  5. Game engines are some of the most complicated pieces of software. Once you decide on a game engine, you will need to take the time to learn how to use it. Luckily, there are many resources online that can help you. Read the user's manual, check out video tutorials, take classes, and consult online help forums to help you learn as much as you can.
  6. Once you have the skills, design a prototype of your game. Your prototype does not need to have groundbreaking sound and visuals, it should not be a complete set of levels, or have all the enemies/power-ups/and weapons your protagonist uses. It should just be one basic level with basic visuals, and one or two enemies/obstacles to show off the core mechanics. You can use your prototype to play-test the concept and maybe even show investors in order to get financing.
    EXPERT TIP

    Ashton Wu

    Board Game Expert
    Ashton Wu is a Board Game expert at Shelfside. After delving into the Yugioh tournament community while growing up, Ashton launched himself into the board gaming community in 2014 and went into reviewing board games as a career full-time in 2019. His YouTube channel Shelfside has over 35K subscribers and over 4 million views, assisted by written reviews on the Shelfside website and BoardGameGeek.com. He also consults with gaming companies to build high-quality gaming products. Ashton is a tournament commentator, board game playthrough director, and host of the Shelfside Podcast, where he talks about board games with his business partner, Daniel. He received a Bachelor of Arts in Economics at the University of California, Santa Barbara, in addition to the Technology Management Certificate.
    Ashton Wu
    Board Game Expert

    Design a captivating game. Game players today crave engaging and streamlined experiences. Focus on easy-to-learn rules and quick setup for a smooth start. Prioritize mechanics that avoid repetitiveness and ensure every turn feels impactful. Design for speed and engagement to keep players hooked, eliciting a response of "just one more game!"

  7. If you are planning on publishing a game for money, you'll need to think about financing. Most game engines require you to pay royalties to use their software. You may need to purchase other programs, like graphic design tools or hire other team members to help you. This may require you to take out a loan or seek out investors. Even if you plan on designing a game all by yourself, you will still need to consider all the time it takes to design your game.
    • To make an average quality indie game, you will need roughly in the hundreds of thousands of dollars. Major titles often take in the millions of dollars to develop.
    • A lot of games have been developed using crowdfunding. Websites like Kickstarter , and Fig can be great ways to raise money for a project. But you'll want to make sure you have the skills to deliver on the product you are selling. While plenty of crowdfunding campaigns have been a success, plenty have also failed.
  8. Advertisement


Part 2
Part 2 of 2:

Developing Your Game

PDF download Download Article
  1. Plan your game . Before you start designing your game, there are some things you'll want to think about [3] Some questions you might want to ask yourself before you start developing are as follows:
    • What are my strengths as a designer?
    • What are my weaknesses?
    • What kind of game can I make based on my strengths?
    • What is the genre of the game?
    • What are some game mechanics that you find make a game enjoyable?
    • What are some game mechanics you find frustrating?
    • What games is your game inspired by?
    • How is it different from other similar games?
    • What will be the key features of the game?
    • How long will it take to develop these features?
    • Are there any features I want that I don't know how to make?
    • What features can the game do without, if needed?
    • Does the game have a story?
    • How does the gameplay fit the story?
    • What kind of art style do I want for my game?
    • How can I create this art style?
  2. A design document lays out everything about the design of your game: the gameplay, the mechanics, the characters, the plot, the concept art, etc. In doing so, it also shows everything that needs to be done, who will do it, what the expectations are, and the general timetable for getting things done. Your design document is very important for not only keeping your own team on track but also for showing to potential investors. [4]
    • Your game design document should be split into sections and include a detailed Table of Contents.
    • Common sections to include cover the story of the game, major and minor characters, the level design, the gameplay, the art, and visual design, the game sounds and music, as well as a breakdown of the controls and user interface design.
    • The design document should not be limited to text. You will usually find design sketches, concept art, and even items like preview videos or sound samples.
    • Do not feel limited or too worried about your design document and it's formatting. There is no standard format or required items to include. Just make a document that is organized and fits your game.
    • Your design document is not set in stone. Things can and do change during a game design project. You may find that certain ideas don't work as well as you thought, or are too complicated. You may also come up with better ideas.
  3. A few games have been made with one person, but it can take years to make even a simple game. Typically, you'll need lots of people with lots of different skills. You'll need programmers, modelers, artists, gameplay or level designers, sound technicians, a music composer, playtesters, as well as producers, accountants, and marketing and advertising professionals. [5]
    • Indie games usually have a team of around 5-20 people. Big-name games can have up to several hundred people working on them!
  4. This is true if you're designing a professional game or a simple game by yourself. First, start by setting a deadline for the entire project. Then set deadlines for the smaller milestones along the way to project completion. Then break down the tasks for the smaller deadlines even further and set deadlines for those. You may even want to create a Gantt chart with all the different tasks lined out.
    • Don't freak out too much if you go over a deadline. It's going to happen. These days, it's not at all uncommon for games to be delayed. However, if you find it's taking you 3x longer to complete a project or task than you originally thought, that's a good sign that the scope of your project is too large and you may need to scale things back a bit. [6]
  5. The assets are all the content that makes up the game. This includes 2D sprites, 3D character models, animations, level layouts, decorations, interactive objects, music, sound effects, and more. You'll need a team of talented artists who specialize in character design, environment design, level design, animation, 3D modeling, lighting, special effects, sound design, voice acting, music composition, and more.
    • If there are certain assets you want for your game, but you don't know how/don't have the time to make, many game engines have an assets store where you can purchase game assets made by other users and use them in your game. This can include characters, objects, music, and more.
  6. Anytime you create something functional in a game, you'll want to have it playtested. Watch the playtesters as they play. You'll learn new things about your game by watching other people play. You'll learn about unexpected ways players will want to interact with your game. You'll get to see how real players react to your game. You may find some game mechanics don't work as well as you thought they did.
  7. During the playtesting process, you'll want to revise any game mechanics that are too frustrating or not fun. You'll also want to correct any bugs that are discovered.
  8. Let people see your game once it's done. Have a website and a development blog. Release screenshots. Make a video trailer. Find popular gaming websites and YouTubers who are willing to review your game. Do interviews with gaming new sources to drum up support your game.
    • Try making a name for yourself in the indie gaming community. The indie game development community is strong, supportive and welcoming. If you're good about supporting, promoting, discussing, and helping them with their projects, they'll return the same in kind. Talk with them, get to know them, and let them get to know you. You'll be surprised what you can accomplish with a community behind you.
  9. There are lots of places where you can release a game but where will depend on what type of game you made. Currently the app stores and Steam are the most open to newcomers. You can release your game independently on your own website but hosting costs tend to be prohibitive. You'll also have less visibility. If you want to release your games on game consoles, like PS4 and Nintendo Switch, you can do so, but these platforms have strict licensing standards. You'll need to know what those standards are and make sure you abide by them.
  10. Advertisement


Community Q&A

Search
Add New Question
  • Question
    How long does this take?
    Community Answer
    Small games can take a few weeks, maybe months. Bigger games can take years.
  • Question
    How many people does it take to make a racing video game?
    Community Answer
    It depends. If it's a small racing game with a few cars and some tracks, one person or a couple of people. But games like Need for Speed require a lot more resources and time. It depends on how big you want your game to be.
  • Question
    Can you make a video game on your website?
    Community Answer
    Yes. You can use Scratch, HTML5, Unity or Adobe Flash. All of these can be embedded in a webpage, allowing people to play it on your website.
See more answers
Ask a Question
      Advertisement

      Tips

      • Keep learning. If you ever need help, ask for it. There are billions of helpful people on making a game so don't ever be afraid to ask or seek for it. And remember, there is always room for improvement so keep studying and learning about making games.
      • Don't spend too much time developing your first games. Experience is more important for new game designers than the final product. You'll learn something new with each project. So finish up those first few games and move on to the next project.
      • Remember to backup your files frequently. You never know when your computer may crash.
      Show More Tips
      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      About This Article

      Article Summary X

      1. Plan your game.
      2. Learn visual software and game engines.
      3. Build a basic prototype.
      4. Look for financing from loans and investors.
      5. Build a team.
      6. Set deadlines.
      7. Create a design document.
      8. Create the game assets.
      9. Create the scripting.
      10. Test the game.
      11. Fine-tune the game.
      12. Promote the game.
      13. Publish the game.

      Did this summary help you?
      Thanks to all authors for creating a page that has been read 949,991 times.

      Did this article help you?

      Advertisement