Using layered/"paperdoll" sprites?

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Post Reply
Snowbadger
Prole
Posts: 9
Joined: Thu Jun 25, 2015 11:33 pm

Using layered/"paperdoll" sprites?

Post by Snowbadger »

Hey, everyone! First post here.

I've been tinkering with Love for just a few weeks, and I'd like to eventually implement character customization while still using sprite sheets (i.e., keeping the body, clothing, hair, etc. on separate layers to be able to mix and match them).

Any suggestions as to how to go about this? I'm liking anim8 so far and I've started looking into using STI as well, so is there a way to do this using those libraries?
User avatar
Jasoco
Inner party member
Posts: 3726
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Using layered/"paperdoll" sprites?

Post by Jasoco »

You could either use Canvases or Image Data I guess to composite the finished customized sprite and then use that as your sprite sheet.
User avatar
zorg
Party member
Posts: 3465
Joined: Thu Dec 13, 2012 2:55 pm
Location: Absurdistan, Hungary
Contact:

Re: Using layered/"paperdoll" sprites?

Post by zorg »

I actually implemented this once before; i took the following approach:
1. Had an image file containing a spritesheet; x axis contained the frames, y axis contained the various parts that made up the sprite (head, torso, pom-pom, etc.), and all of it was grayscale.
2. after the player customized their appearance, the game "baked" together the spritesheet they would be using ingame, so it wouldn't have to composite and color all 12 different parts each frame. (drawing the whole character once is faster than drawing the parts 12 times, naturally)
One thing you might keep in mind is what blendmode you want to use to mix the color in with the parts; additive might work, but that will never darken to black when the chosen colour would be 000000 (black); also, you could implement transparency this way as well, though only if it makes sense to you; i personally find it funny to see floating heads on the gamefield :D
Me and my stuff :3True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
bobbyjones
Party member
Posts: 730
Joined: Sat Apr 26, 2014 7:46 pm

Re: Using layered/"paperdoll" sprites?

Post by bobbyjones »

It might be easier to just color code the sprite before hand. Like the shirt is black and everything else is red. So you take the imagedata and when you want to change shirt color you just change every black pixel to the shirt color. And the same can be done for all the components. It wouldn't be the fastest but it could be done using threads and it could actually be pretty cool. Oh wait the point isn't color. Yeah just animate every shirt and every pants style and etc you have
Snowbadger
Prole
Posts: 9
Joined: Thu Jun 25, 2015 11:33 pm

Re: Using layered/"paperdoll" sprites?

Post by Snowbadger »

Wow, it didn't even occur to me that it's possible to generate a custom spritesheet like this. I was dreading having to juggle spritesheets of every component for every frame. Yikes.

I'd prefer to avoid canvases due to reading about their limited compatibility, but that does seem like the easiest way to go about it. Especially since I guess I'm running into this same issue here with trying to combine image data: viewtopic.php?f=4&t=12583

Thanks for pointing me in the right direction, guys! (Those coloring suggestions may come in handy too.)
User avatar
T-Bone
Inner party member
Posts: 1492
Joined: Thu Jun 09, 2011 9:03 am

Re: Using layered/"paperdoll" sprites?

Post by T-Bone »

I think current (or future? I forget) versions of Löve guarantee Canvas support. It's safe to assume they will work.
bobbyjones
Party member
Posts: 730
Joined: Sat Apr 26, 2014 7:46 pm

Re: Using layered/"paperdoll" sprites?

Post by bobbyjones »

The next version.
User avatar
FLÖRGEN
Prole
Posts: 4
Joined: Thu Jun 25, 2015 2:00 am

Re: Using layered/"paperdoll" sprites?

Post by FLÖRGEN »

If you are worried about canvas not being compatible then you could use

Code: Select all

love.graphics.isSupported("canvas")
and if it's false do another method else use the canvas method.
Snowbadger
Prole
Posts: 9
Joined: Thu Jun 25, 2015 11:33 pm

Re: Using layered/"paperdoll" sprites?

Post by Snowbadger »

T-Bone wrote:I think current (or future? I forget) versions of Löve guarantee Canvas support. It's safe to assume they will work.
bobbyjones wrote:The next version.
Well that is awesome news. Thanks for the heads-up!
FLÖRGEN wrote:If you are worried about canvas not being compatible then you could use

Code: Select all

love.graphics.isSupported("canvas")
and if it's false do another method else use the canvas method.
True. I doubt I'll have my project finished before the next version of Löve rolls around, but I'll keep this in mind!
Post Reply

Who is online

Users browsing this forum: Bing [Bot], Google [Bot] and 1 guest