Anonymous user
Graphics, Characters, Text & Rooms: Difference between revisions
Jump to navigation
Jump to search
Graphics, Characters, Text & Rooms (view source)
Revision as of 18:04, 18 September 2007
, 18 September 2007→Creating your own characters
*>Dasjoe |
*>Ashen |
||
Line 54: | Line 54: | ||
''How on Earth do I create my own characters!?'' | ''How on Earth do I create my own characters!?'' | ||
* Go to the 'Characters' pane of the editor. | |||
* Press the 'New Character..' button, enter a name in the popup box and click 'OK'. | |||
* At the top of the screen, give your characetr a Script name - this will create the Script-o-name, which is how the character will be refered to when you're scripting. | |||
* '''Congratulations!''' You've just made your own Character. | |||
Now, the hard bit... | |||
The character you just created probably looks like the default character, Roger - he's not a bad looking chap, but a game full of him would be a bit much. So, you'll need to perform a little cosmetic surgery: | |||
* First, you'll need to create the frames for your character animation (e.g. walking and talking) in an art program of some sort. The Critics Lounge on the AGS forums has threads of recommendations for programs, as well as templates to help you with the animation. | |||
* Import your Sprites in to AGS, in the 'Sprite manager'. AGS can import graphics in '''.BMP, .GIF, .PCX, .PNG''' and '''.TGA''' formats. There are options to bulk import sprites, and to import all frames from an animated '''.GIF''' or '''.FLC''' animation file. Alpha channels are supported for '''.PNG''' and '''.TGA files''', if your game is 32-bit colour. | |||
* Assign your imported sprites to a View. You can do this one at a time in the 'View' pane of the editor, or assign multiple sprites at once in the 'Sprite manager' - Select them, right-click and choose 'Assign to view...'. Views are Made up of Loops - sequences of sprites that animate the character when it's facing a cetain direction. Most Views will have 4 Loops, or 8 for diagonal movement, ordered like this: | |||
Loop 0 - down (towards screen) | |||
Loop 1 - left | |||
Loop 2 - right | |||
Loop 3 - up (away from screen) | |||
Loop 4 - diagonally down-right | |||
Loop 5 - diagonally up-right | |||
Loop 6 - diagonally down-left | |||
Loop 7 - diagonally up-left | |||
(Diagonal movement isn't required, so if you don't have those sprites - just don't create those Loops.) | |||
* Go back to the 'Character' pane of the editor, and set your character to use the Views you just set up for it. | |||
There are a lot of other options in the Character editor, which are explained [http://www.bigbluecup.com/manual/Characters.htm in the manual]. | |||
==Character speech problems; Creating talking views== | ==Character speech problems; Creating talking views== |