Game Design Basics: Assets


I’ll confess right up front that I’m not as organized as I’d like to be when it comes to game design or, well, anything. However, let’s pretend I was. In that case, I’d start out by considering what assets I need for the Caves and Ladders game I discussed in the last post.  When people in game development talk about assets, they don’t mean how much money you have in the bank, but rather the art, animation and sound that you include in the game.

Now, keep in mind, you don’t need to actually have these assets in hand to start creating the game. In fact, we often don’t have those assets so we use a placeholder of the equivalent size. When Dennis was working on the first draft of Fish Lake he had a construction worker with a tool belt running around because our 3D models of Ojibwe characters were not done yet. If you want to get your games done in any reasonable time frame, you should have an idea of the artwork and sound you need so your staff can get working on it.

ART ASSETS

Characters on snow background

At a minimum, we’re going to need these:

  • Background image
  • Male character (game piece)
  • Female character (game piece)
  • Game board background
  • Images for “events” in the game. In this game I need a tree, cave, ladder and a campfire.
  • boy in a holeEvents with the character – that is, an image with the tree with the female next to it, an image with the tree with the male next to it, a boy falling into a cave, etc. You could get around this by coding a character overlay, and if these were large images, I would have done that to minimize the size, but these are tiny images so I didn’t bother.
  • Six different images for the numbers on the die, 1-6. Again, I could have coded this, used a canvas element and drawn the dots but remember my design point #11, don’t be more clever than necessary? Six images with a dot take up a minimal amount of space.
  • A “win screen” – there isn’t a lose screen at this point because you just play until you get to the end.

SOUND ASSETS

A funny but true fact you’ll read in many game design books is that sound makes a game look better. Right now, this game only has four sounds:

  • dice rolling
  • foot steps (for when they go up the ladder)
  • fire burning
  • a whoosh sound for when they fall into a cave

At a very minimum, I want to add the following sounds that I just haven’t put in yet:

  • a bell ding when they get a problem right
  • gong, for when the problem is answered incorrectly
  • victory tune, for when they win the game

I actually have the first two of those, I just haven’t dropped them in yet. That’s another lesson on game design – iteration. You can’t necessarily get everything in the first pass, that’s why all the software you use has version numbers like 158.17c , because they’ve done 157 major updates since version 1, and they are on the 17th minor revision of the current version.

Now that we’ve got the game outlined and the assets we need identified, let’s go on to the coding.


Want to see our current version of Making Camp? Get it on the app store or in Google Play, for free.

Mom from Making Camp says That is correct

Leave a comment

Your email address will not be published. Required fields are marked *