AuthorTopic: GR#120 - Princess Piledriver - Sideview Characters & Animation  (Read 32924 times)

Offline PixelPiledriver

  • 0011
  • **
  • Posts: 997
  • Karma: +6/-0
  • Yo!
    • View Profile
    • My Blog

Re: Princess Piledriver

Reply #40 on: May 18, 2012, 08:33:26 pm








Quote
Okay, I'm jumping on the edit train too. Choo choo!
Thanks!
You've made a lot of good points and changes.
Unfortunately I worked on my edit before you posted.
The directional outline is cool.
But I'm considering popping them all off and just adding lines with Shaders so they can be colorized, thickened, stippled and react to lights and such.
The bounce light will actually act as a color property for a shader and can be shown in any color or removed completely.
I need to make it a unique color value tho as I've used it in other places.
Or I may bump it to a new layer.
Not sure yet.
Other cool effects can be done like color interpolation, glowing stuff, and palette indexing.
Getting stuff like that working is actually not too much code using basic HLSL and some helper functions.

PixelShader
// Current pixel is color to shade?
if(IsColor(color, PrincessPink()))                             
{
 // Shade pixel
  return float4(Green().rgb + (wave *0.5), 1);
}


HelperFunctions
// checks if colors match
bool IsColor(float4 color1, float4 color2)
{
   float3 c1 = float3(color1.rgb);
   float3 c2 = float3(color2.rgb);
   
   if(FloatEquals(c1, c2))
      return true;   

   return false;
}

// checks if float3s are equal
bool FloatEquals(float3 n1, float3 n2)
{
   if(n1.r == n2.r)
      if(n1.g == n2.g)
         if(n1.b == n2.b)   
            return true;
         
   return false;
}

// special color for shader I can call by name
float4 PrincessPink(void)
{
   return ColorFromRGB(242, 154, 222);   
}

// color[0-1] from color[0-255]
float4 ColorFromRGB(float r, float g, float b)
{
   return float4(r/255, g/255, b/255, 0);
}


Quote
Having done this, I agree the sprites are too large to animate. Something more Capcom proportioned seems feasable.
Quote
I definitely agree with sprites being too large tough idk if these are for just animation or for game oriented
Quote
Also I'm sure it's a matter of finish level but I enjoy your pixel clusters more in the smaller size.
Agreed the sprites are large and a lot more work to deal with.
However they are more to my liking and feel more like how I draw on paper.
There are different processes for animation.
They balance quality, speed, feeling, order of steps etc.
My animation training is actually in film style which is drawn extremely large.
In the film environment it is acceptable to take 2+ weeks on a single animation for a character saying a sentence or two.
It's made me very patient but also realize how wasteful old style animation techniques are.
I don't want to spend so long on a single animation or use so many steps to the final render.
It's surprising how much motion you can pull out of a single key, and how messy fast inbetweens can be.
Many parts of an animation can remain rigid and reused, while only the main areas of focus, or effect, change.
This let's you get away with less unique drawings and more time spent polishing motion, which will sell the animation better than really nice drawings with bad motion.
Of course this has its own result and feel.
Traditional process and techniques have a great feel, but are much more expensive.

Quote
Well, about the new version of BB... she might be a bit over stylized, I liked the previous version more, it was simpler, but still carried some character.
I think both have and interesting personality.
The 1st design is more like someone you would add to your party after meeting her twice in a cave and she unlocked some doors for you.
The 2nd design was intended to make her more brutal, like a caveman almost, someone you wouldn't want to bump into.
The 3rd  design pushes more towards the 1st while still twisting it a little.
If this were 3D I'd just ship all 3 as costumes.
Much easier to change props and details.

Quote
your newest renditions seem to be more traditional character design ex: giving bootie bandit a prop to go with her name, which on a fundamental level is good, but your earlier designs seemed to break some rules and I liked them for it.
Its true that giving them props that fit their name or class very closely make them more archetypal and generic.
The trade off is basically Visual Recognition vs Original Concept.

The game idea is based on 3 items like Rock-Paper-Scissors:

This can be thought of as Actions instead of items.
Attack-Defend-Shoot.

Even the defense item should be unique in some way.
In Booties case I want her to be able to steal/grab stuff with her shield.
A bag seemed like a classic choice.
But a summon shield is a little more interesting to me.
And magic boots!
But of course!

Quote
The design reminds me of something from Cosmic Soldier, Psychic War.
http://hardcoregaming101.net/psychicwar/psychicwar.htm
Also relevant: http://www.youtube.com/watch?v=IuS1ngU9jlc#t=2m16s
Thanks for these great links arne!
I love this sort of old style.
Slamming a brain into the ground is highly entertaining.
It's exactly the kind of stuff I want to animate.
Over the top violence with unrealistic characters.
And lots of particle effects!
« Last Edit: May 18, 2012, 08:48:39 pm by PixelPiledriver »
And knowing that it is, we seek what it is... ~ Aristotle, Posterior Analytics, Chapter 1

Offline PixelPiledriver

  • 0011
  • **
  • Posts: 997
  • Karma: +6/-0
  • Yo!
    • View Profile
    • My Blog

Re: Princess Piledriver

Reply #41 on: May 21, 2012, 01:13:00 am
Decided to move this post to its own thread.
It clutters the focus of this one.
« Last Edit: May 21, 2012, 10:16:30 pm by PixelPiledriver »
And knowing that it is, we seek what it is... ~ Aristotle, Posterior Analytics, Chapter 1

Offline Grimsane

  • 0010
  • *
  • Posts: 423
  • Karma: +2/-0
    • View Profile

Re: Princess Piledriver

Reply #42 on: May 22, 2012, 01:57:28 pm
this is amazingly shweet, interesting colour scheme, what colour scheme will the environments be?
and the talk about 2D shaders etc are quite interesting :D

the only game i can think of in recent memory that has pulled off such high quality sprites with fluid animations and fluent gameplay at the same time was the 2nd demo release of iconoclasts, if there are others I'd love to see, but I'm hoping if your concepts get realized they'll be as amazing, they imply they will be already ;D

have you thought much about the format of presentation? camera angle, degrees of movement etc.

real exciting stuff, gonna keep my eyes on it. :)

and am i the only one who noticed the suggestively located heart in rikfuzz's edit? :lol:

Offline Sohei

  • 0010
  • *
  • Posts: 102
  • Karma: +0/-0
    • View Profile

Re: Princess Piledriver

Reply #43 on: May 29, 2012, 07:49:59 am
Your girls are so lovely. I so want to add more lovely to them.
« Last Edit: May 29, 2012, 08:06:13 am by Sohei »

Offline PixelPiledriver

  • 0011
  • **
  • Posts: 997
  • Karma: +6/-0
  • Yo!
    • View Profile
    • My Blog

Re: Princess Piledriver

Reply #44 on: August 17, 2012, 11:28:23 am
Continuing with the scale ups and design mods:




Start of a few more characters:




Crits and edits are always welcome.

Quote
Your girls are so lovely. I so want to add more lovely to them.
Thanks Sohei!
I'll add your edit to the collection and learn what I can from it.

Quote
what colour scheme will the environments be?
No clue!  :lol:
I'm going to cap the character count at about 2-3 more, and might boot a few.
After that I want to do a few animations and eventually play around with backdrops.

Quote
have you thought much about the format of presentation? camera angle, degrees of movement etc.
Really I started out drawing these just for fun.
Then I figured it could work well with an old game design I had laying around.
But I got involved in a project that takes precedence over this for many reasons.
If I ever get the time this stuff will become a vs fighter with simple controls and a Rock, Paper, Scissors battle system.
When?
Dunno, I'm fully booked for quite a while.
« Last Edit: August 19, 2012, 07:05:32 am by PixelPiledriver »
And knowing that it is, we seek what it is... ~ Aristotle, Posterior Analytics, Chapter 1

Offline nivek

  • 0001
  • *
  • Posts: 28
  • Karma: +0/-0
  • Custom Brawl!
    • View Profile
    • Toastylinks

Re: Princess Piledriver

Reply #45 on: August 21, 2012, 04:08:39 am
You have a very nice collection of sprites here.  :y:

Quote
I'm going to cap the character count at about 2-3 more, and might boot a few.

I hope you keep the princess sprite.

I tried to animate an attack for the princess here:


Very cool sprite to work with. Can't wait for their animations. :crazy:
« Last Edit: August 22, 2012, 04:19:40 am by nivek »

Offline PixelPiledriver

  • 0011
  • **
  • Posts: 997
  • Karma: +6/-0
  • Yo!
    • View Profile
    • My Blog

Re: Princess Piledriver

Reply #46 on: January 19, 2013, 11:02:15 am


Still messing with this just for fun.
Suggestions welcome.
And knowing that it is, we seek what it is... ~ Aristotle, Posterior Analytics, Chapter 1

Offline coffee

  • 0010
  • *
  • Posts: 190
  • Karma: +1/-0
    • JohanAronson
    • View Profile

Re: Princess Piledriver

Reply #47 on: January 20, 2013, 12:04:47 am
I'm going to try not to be a fanboy!

I've always had issues with drawing hands for some reason, both on paper and on the computer. The hand of the giant type of Frankensteins monster look really neat. I'll study them for further hand drawing on my part!

If I would compare these to the other characters in this thread, they might be a bit less edgy. Perhaps you could make the "hiphop balerina sloths" hands even more clawlike or something.

fine work!