Naming conventions

Respecting consistent and logical naming conventions early in the project will spare you a lot of headaches later on, whether when tracking down a naming mistake somewhere, or when writing scripts to automate things up.

Prefixes:

Suffixes:

Important: Note that each element of the name is separated by a “_” character. e.g.: L_shoulder_JNT Or L_thumb_END

Also, the reasons why I use capitals (“L_” and not “l_”) are:

  1. With some fonts, the lower case letter “l” can look like the number “1″ or the letter “i”.
  2. It can greatly facilitate your task when searching/replacing through a script.

Anyways, I’m sure you’ll come up with your own rules… :)