Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Game Dev: Introduction To Asset Pipeline

[email protected]
February 23, 2013
1.5k

Game Dev: Introduction To Asset Pipeline

This is a talk I did at the NY Game Developers meetup focusing on asset pipeline for 2d games.

[email protected]

February 23, 2013
Tweet

Transcript

  1. refers the to asset workflow you create for your project.

    This could be as simple as copying files over by hand into your game’s media folder or writing more complex automation scripts to generate the art for you.
  2. is a single bitmap image that is drawn to the

    display; in this case our Canvas Element. To help organize them better, sprites are grouped together into a single image called a sprite sheet.
  3. is a large image containing a collection of sub-images, or

    "atlas" which contains many smaller sub-images. This is used primarily in 3d for textures but is very useful for 2d games as well.
  4. Atlases can consist of uniformly-sized sub-textures, or they can consist

    of textures of varying sizes (usually restricted to powers of two). *Illustration from http://www.grimrock.net/modding/creating-custom-assets/
  5. • Create Texture Atlas with data file • Extract Sprites

    • Custom atlas data templates (can create xml, json, text, etc) • Create bitmap fonts • Cross platform • Works with Cocos2d, Unity3d, HTML5 and more.