Pixelation

Critique => Pixel Art => Topic started by: Tuna Unleashed on August 10, 2013, 04:42:14 am

Title: W R E S T L E
Post by: Tuna Unleashed on August 10, 2013, 04:42:14 am
i havent sprited in like a year but today i got really baked and started spriting wrestlers for some reason so whatever
(http://i.imgur.com/xVGK9H0.png)
(http://i.imgur.com/9uwmzGM.png)
(http://i.imgur.com/wdfLX2k.png)
(http://i.imgur.com/E9lhfjd.gif)
Title: Re: W R E S T L E
Post by: Tuna Unleashed on August 10, 2013, 05:23:13 am
suuuup
(http://i.imgur.com/MdJSWES.png)
Title: Re: W R E S T L E
Post by: Tuna Unleashed on August 10, 2013, 06:03:04 pm
(http://24.media.tumblr.com/9c5a734775454e0f4fd4e58ca360cc97/tumblr_mrbu2mnIac1rc9akio1_1280.png)
Title: Re: W R E S T L E
Post by: Carnivac on August 10, 2013, 07:47:39 pm
Is that a Randy Savage with cybernetic arms?  These are pretty cool.
Title: Re: W R E S T L E
Post by: Tuna Unleashed on August 12, 2013, 08:16:49 pm
(http://tempmedia.tumblr.com/preview.5Dc0GuTXdTqYGEAh/0ddda8333e30fbf4863399070b3220e9_250.png)
(http://tempmedia.tumblr.com/preview.5Dc0GuTXdTqYGEAh/0740424537f633dab6bb3ad2def076ec_100.png)
GOLDEN TIGER and HOLY CROSS
Title: Re: W R E S T L E
Post by: Tuna Unleashed on November 03, 2013, 05:52:36 pm
(http://media.tumblr.com/894cb82cafb5f1600ef0bfb1a1f7d546/tumblr_inline_mvp61oG8El1r1473g.gif)
(http://media.tumblr.com/e803aeaad37e21d8b115ee62a3ec4b76/tumblr_inline_mvp62ehkme1r1473g.gif)
(http://media.tumblr.com/e7432c9184264553f607e3719dd614d0/tumblr_inline_mvp620uawe1r1473g.gif)
(http://media.tumblr.com/7296898cc448116c6b122ba67620f35b/tumblr_inline_mvp63yvjSH1r1473g.gif)
Title: Re: W R E S T L E
Post by: jams0988 on November 04, 2013, 05:05:51 pm
These are really well done. The animations have a lot of punch, especially. =)
Title: Re: W R E S T L E
Post by: PixelPiledriver on November 04, 2013, 07:35:44 pm
The drawings are really good.
Some of the spacing is a little even.
The delays seem a bit high for the actions portrayed.
But I realize it generates less work.
They could use better mathematical progression.
Your delays are: 30, 10, 10, 10, 10, 10, 10, 10
Mine are: 30, 10, 14, 3, 4, 6, 8, 10, 8, 6, 4, 8, 6, 4

(http://3.bp.blogspot.com/-6KzyJ55aGy0/Unf2tWJyWkI/AAAAAAAAIDs/kWUnJjbbr-M/s1600/WrestleJumpAndLand_6.gif) (http://2.bp.blogspot.com/-F26ToI_KGys/Unfzuoo77hI/AAAAAAAAIDY/3pkjz_OfXVQ/s1600/tumblr_inline_mvp620uawe1r1473g.gif)
Title: Re: W R E S T L E
Post by: Decroded on November 06, 2013, 07:07:26 am
The drawings are really good.
Some of the spacing is a little even.
The delays seem a bit high for the actions portrayed.
But I realize it generates less work.
They could use better mathematical progression.
Your delays are: 30, 10, 10, 10, 10, 10, 10, 10
Mine are: 30, 10, 14, 3, 4, 6, 8, 10, 8, 6, 4, 8, 6, 4

(http://3.bp.blogspot.com/-6KzyJ55aGy0/Unf2tWJyWkI/AAAAAAAAIDs/kWUnJjbbr-M/s1600/WrestleJumpAndLand_6.gif) (http://2.bp.blogspot.com/-F26ToI_KGys/Unfzuoo77hI/AAAAAAAAIDY/3pkjz_OfXVQ/s1600/tumblr_inline_mvp620uawe1r1473g.gif)
Sry for hijack but relevant I think  :lala:

Thats great for a stand alone animation but different timing per frame makes extra coding work for me.
You're a programmer right? So maybe there's some trick you use like an array for each frame's delay??
Title: Re: W R E S T L E
Post by: PixelPiledriver on November 06, 2013, 09:00:26 am
Quote
Thats great for a stand alone animation but different timing per frame makes extra coding work for me.
All things are extra work.  :)

Quote
You're a programmer right? So maybe there's some trick you use like an array for each frame's delay??
Well there's no trick exactly but there are different ways of implementing the data.

You could fill out an array by hand directly into your code if you want.
But I wouldn't call it that the cleanest solution.

Another way is to fill out a text file by hand, write a quick parser, then write a txt file for each character/object that's formatted in the way the parser needs.
Here's an example of that (https://drive.google.com/file/d/0B2pVpAOxw9mRZC1FZF9jME5XbUE/edit?usp=sharing) by Tyrannotorus (http://wayofthepixel.net/index.php?action=profile;u=32069).
You could simplify the process by writing some code that creates the formatted text file for you after you fill out some input boxes and hit a button, that way you don't have to work directly in notepad.
Or you could use another format like xml if you don't want to write your own.
Or store it in binary if you feel like it.

Another way would be to make a sprite sheet with duplicated frames for holds, have the code count the number of duplicates, save that to game usable data, then reprint the sprite sheet without the duplicates.
That way getting the number of delays would be automated.
The comparison could be done by checking all the pixels per frame, or you could use an alternating color code in the top left pixel or something like that.

Or you could use a colored pixel in the topleft and convert its r channel into delays.

Or you could just have oversized textures with duplicated frames and not worry about it.

Or you could write your own pixel editor that saves all your image data just the way you want it and not use sprite sheet images at all.

Or just a delay editor that loads in the texture and lets you set delays, then save them somewhere.

There are many other solutions.
Certain structures exist out there and you can find them if you look.
But most of the time as a programmer you just make stuff up.

If your game doesn't support variable frame delay I think you're missing out on something that will potentially make it look a lot better.
But even without it you can make a great game.
What are you programming in?
I've done C, C++, C#, and some other stuff.
I haven't done an animation structure in a while but we could probly talk thru it.
If you want to talk more about it PM me sometime.



Also I said say that if you are doing a simple game with only a few animations, hard coding all your data directly isn't that bad.
But bigger projects go a lot smoother if you build stuff for integrating content.
And it's more likely you'll use the same formats/tools on future projects so you can improve them over time.
Title: Re: W R E S T L E
Post by: Tuna Unleashed on November 11, 2013, 04:03:30 pm
(http://i.imgur.com/VAxEwOY.gif)



(http://i.imgur.com/M2PleST.gif)
(http://media.tumblr.com/cb92ec8ee87a5a0357e02ae661b180cc/tumblr_inline_mwbh1wtFcu1r1473g.gif)
Title: Re: W R E S T L E
Post by: Lexou Duck on November 15, 2013, 10:22:30 pm
heyy tuna, long time no see :)

for that girl's kick it seems kinda weird that she ends with her feet suggesting a different perspective/camera angle than what she started with
the size of her hands keeps changing all over the place too

as for the big guy i like the idea of having him stop at those frames, but his feet suggest otherwise
maybe have his front leg bent and his foot put solidly on the ground so that it feels like a nice heavy step for him to land on


though i really like these keep it up