AuthorTopic: Why is it that in gbc/gba/mobile games the sprites...?  (Read 2832 times)

Offline N0ixZ3

  • 0001
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile

Why is it that in gbc/gba/mobile games the sprites...?

on: January 16, 2015, 12:48:33 am
Always appear shorter in games that are more open spaced/isometric (like pokemon) but in games that are sidescrollers they can be taller (Like tomb raider curse of the sword).
I've only seen them tall in an open spaced/iso game on pc, why?
« Last Edit: January 16, 2015, 12:57:28 am by PixelPiledriver »

Offline Cyangmou

  • 0011
  • **
  • Posts: 929
  • Karma: +3/-0
    • cyangmou
    • http://pixeljoint.com/p/32234.htm
    • cyangmou
    • View Profile
    • Pixwerk Homepage

Re: Why is it that in gbc/gba/mobile games the sprites...?

Reply #1 on: January 16, 2015, 02:15:08 am
1) gameplay decisions - open spaced worlds need mostly 4 or 8 directions to move, while sidescrolling games mostly use in 3 directions + gravity (and falling mostly means death). This further means you can leave away one direction and the screen still leaves enough visible space for the 3 other directions. So a bigger char doesn't limit your sight that much.

2)screensize limitations - if you have handhelds or old systems the resolution was limited (it's still limited, though for pixel art HD is "practically" infinite). Since you have just a given size of pixels to work with, you have to make the most out what you have.

3)artstyle decisions - drawing a sidescroller sprite detailled is quite simple. You have to draw it 1 time and you can mirror it - works perfectly. Some games with asymmetric characters use 2 directions (Metroid) but even there it's just editing.
Topdown games need 4 direction, while only 1 can get mirrored. Means they are by definition 3 times more work with the same artstyle. You can do them 8 times too.

4) hardware limitations: topdown needs more sprites, realistic styles need usually more frames, this together needs more memory and on mobile handhelds and early gaming systems memory was quite an important factor.

3 Frame animations with pokemon char styled sprites are looking alright. A Lara Croft sprite with 3 frames would look quite stiff and in terms of animations cheap.

regarding the second part of your question:
"I've only seen them tall in an open spaced/iso game on pc, why?"
Most bigger sprites you have seen on pc are most probably pre-rendered sprites and not pixel art sprites. This means you build 1 model, animate it 1 time and just let it display in a lot of directions. You take those directions and export them as images (sprites) - Diablo is the most prominent example for this technique. This doesn't look as sharp as pixel art though and also won't get remotely close to any great 2D handdrawn and in the right way exaggerated animation, just from the feeling, but nevertheless it's much simpler to do it that way.
« Last Edit: January 16, 2015, 02:23:48 am by Cyangmou »
"Because the beauty of the human body is that it hasn't a single muscle which doesn't serve its purpose; that there's not a line wasted; that every detail of it fits one idea, the idea of a man and the life of a man."

Dev-Art
Twitter

Offline surt

  • 0011
  • **
  • Posts: 570
  • Karma: +0/-0
  • Meat by-product
    • not_surt
    • http://pixeljoint.com/p/2254.htm
    • View Profile
    • Uninhabitant

Re: Why is it that in gbc/gba/mobile games the sprites...?

Reply #2 on: January 16, 2015, 09:02:37 am
Sit on the floor and get a friend to lie down with head facing you and feet furthest away, then get them to stand. Which one looks taller?
That's the difference between top-down and side-on views.

Offline Ellian

  • 0010
  • *
  • Posts: 245
  • Karma: +1/-0
    • View Profile
    • This is Ellian

Re: Why is it that in gbc/gba/mobile games the sprites...?

Reply #3 on: January 16, 2015, 10:16:35 am
Most have already been answered, but to add something on Pokemon/Zelda top-down style:

If your sprite is significantly taller than a tile, he starts hiding the tall behind it;
If you had a 64px tall sprite on a 32px tall tile, it would totally hide the tile behind it, and also lead to some serious perspective problem for the viewer.

Offline N0ixZ3

  • 0001
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile

Re: Why is it that in gbc/gba/mobile games the sprites...?

Reply #4 on: January 16, 2015, 12:41:29 pm
You all are super informative, thanks!  :crazy: