🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Decent bare bone 2d spritesheet style

Started by
2 comments, last by kseh 4 years, 11 months ago

Hi, I'm looking for advice/best practices/success stories to setup the simplest spritesheet animation and 2d art possible. I basically just want it to look decent without producing an incredibly high number of art. Currently my placeholder assets have no animations and are really ugly.

image.png.3127b600ede8507901ac6d7936ffb41f.png

Ideally I mainly want the player to be able to tell what the actors are doing (mainly if not exclusively walking and attacking, with no possibilities of doing both at the same time).

Here are some requirements :

  • Walk / Attack animation
  • Not necessarily pixel art
  • Must accommodate a basic wearable system (one item held in hand, wearable : pants, armor, helmet)
  • Must be distinguishable from afar, and look engaging from up close (provided picture is the typical distance from which the game is played)
  • Need to accommodate animals and creatures (minus the wearable)

This is what I'm thinking about doing style wise right now (sketched this in about 15 mins) :

image.png.52f59152445d5beabc02214fd9cb8eef.png

Basically need advice to animate it on a simple spritesheet. For item I thought about simply layering them on top of this sprite (perhaps having a special sheet full of faces to further personalize the npcs).

Anyhow, I am far from being an artist (hobbyist programmer, professional BA) and I'm at the point in development where I need to produce content. 

Advertisement

First off, thanks for providing lots of pertinent information; not so common are on these forums, to be honest. I'm working on a base sprite sheet for a similar RPG so I can relate to your pain. ?

I'd recommend googling for "RPG sprite sheets" and find something that is close to what you want, then trace over it with your own style. If there's a game you played that inspires you, use https://www.spriters-resource.com/ to peek at professional sprite sheets. I've seen artists make base character sprite sheets at https://www.deviantart.com/ , but most of them are those gigantic head, cutesy stuff that looks like RPGMaker skins.

Edit: Your screenshot looks cool though. It makes me want to kill all those guards in the house to get at those treasure chests!

The short answer that I have is that it takes practice, planning, and experience to elevate programmer art to better looking programmer art. You absolutely can find an artist and make much prettier pictures to use but you still have to figure out how to best use the assets you'd be provided with.

Since you sort of asked for a story about experiences, I'll share. Though, I don't imagine any of this should be considered "best practice". (Sorry, looks like it got kinda long and probably does not apply to your situation but rather than a specific solution maybe think of it more like the degree of planning that can be involved.)

With my programmer art and being a hobbyist game programmer, I've tried to just keep it as simple as possible. Right now my base human graphic is side view only and is just a rectangle with feet and 1 black pixel for an eye. Then I made a couple simple, one color shirts (with a bit of a noise texture) to go on the upper body, pants for the lower body, hats and helmets for the head, and a sword to go in the hand. When I started with this base (it was while working on the dungeon crawler challenge), I was fine with a game where everyone just looked like basic primitive shapes. Then I started putting the clothes on them and they just started looking human.

Where things get particularly complicated is with animating limbs.

Some time back, I figured on dealing with this issue for arms by making the hands completely disembodied. I don't need to deal with creating clothing frames for every which way that my character might wave his arms for whatever dozens of actions I may want to include. Instead, the hands are kinda like the clothes in that they're painted separate from the main body. Hands can hold one object, follow along with the character, and, when commanded to do so, can be engaged in an animation such that the hands are moved relative to where the player is.

In theory I could have done the feet disembodied the same way but I ended up just with short simple black lines for legs that I try to either completely obscure or expose with whatever clothing is chosen. Robes, dresses, skirts, and shorts all generally look about what you'd expect as the base sprite runs a single basic walk animation under the clothing. Where it doesn't work quite as well is with like a pair of jeans where the clothing would have to follow the legs. If I make the legs of the jeans wide enough, it can look mostly ok but it doesn't look like the legs are moving while the character is walking (I don't animate the jeans). I think I've had some "jeans" work such that the bottom pixels implied a bit more length than the shorts and with the legs being black you can kinda look past the lack of further detail.

I only implement a left and right side view. I find that straight on front and back views are tougher to work with. At first I felt like a cheating and told myself that if I ever wanted to really release something I'd create front and back views later with an artist. Then I saw some games released in Google play where the sprites only had left and right side views and at that point it occurred to me, the view as I have it is just fine and I'm not going to worry about other directions unless I really find a need to.

The more details you add the more it seems to highlight the other details and flaws that you haven't attended to. For example with my hand animations, it's great that I can make the hands sway as the character walks and I can use it as part of a sword thrust or item use animation. But as it turns out, at the moment, my system isn't setup such that I can play an animation then have the character go do something else when the animation completes. For my current project, I want to have a lot of little detailed actions that the characters do as they progress through a story. It works ok for some and not others. And the ones that it doesn't work for seem like they really stand out to me.

Much of putting a game together is smoke and mirrors. If in your game play you fudged a randomization result such that you knew that the player was going to get an entertaining experience you wouldn't feel guilty about that at all. Whatever tricks you can think of to elevate the look and feel of your game, give it a shot. I have lots of offset values, collision rectangles, layer positions that I manually tweak to make a level look and function better. Relying on whatever system I've coded to do it right every time isn't always practical.

 

This topic is closed to new replies.

Advertisement