MichaelSinsbeck / platformer

A ninja platformer written in LÖVE
7 stars 0 forks source link

Secrets #156

Closed michalove closed 7 years ago

michalove commented 10 years ago

People requested unlockable costumes. I like the idea of hiding stuff in the levels. As a second layer of player motivation.

Germanunkol commented 10 years ago

Love the idea. The costumes should probably simply be new images which overlay the same position as the player and are animated in the same way. Then all combinations with the different bandana colors are automatically possible, by simply drawing the ninja first and then the costume.

michalove commented 10 years ago

I like the overlay idea. We might even decompose the whole player image into individual parts (body, arms+legs, eyes, bandana ... ) and put them together in game only. That way, we can generate more possible combination. This would be even more efficient, when we'd use a technique as described here: http://gamedevelopment.tutsplus.com/tutorials/animating-with-asset-sheets-an-alternative-to-blitting--gamedev-2406 I am sort of doing this for the animation of the purple walker enemies, anyway, but by hand. I will think about it, if I can come up with a simple but flexible system for that, without blowing up the project size.