Free textured and animated 3d human "adam"

Post your questions, suggestions and experiences regarding to Image manipulation, 3d modeling and level editing for the Irrlicht engine here.
Post Reply
CuteAlien
Admin
Posts: 9691
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Free textured and animated 3d human "adam"

Post by CuteAlien »

As I annoyed the IRC-channels already a few days with bad screenshots, some of you already know that I've started learning to use Blender. I got now my first human mostly finished and decided to release it as OpenSource (or is it called OpenContent for art?).

Image

You can find it here: http://www.michaelzeilfelder.de/irrlicht.htm#Models. There's no restrictions for using it, so you can change it, use it, abuse it or sell it (if that works please tell me the trick).

It has a base set of (rather bad) animations which are already exported as b3d. Though without some work the only you can probably load is adam_base.b3d. All the adam_ani*.b3d files need a little work. In short you have to load first the adam_base which contains the mesh (into variable Model) and then make it use the animation files (here loaded into IAnimatedMesh* m) like that:

Code: Select all

static_cast<scene::ISkinnedMesh*>(Model->getMesh())->useAnimationFrom( static_cast<scene::ISkinnedMesh*>(m)
Model->setFrameLoop ( 0, m->getFrameCount() );
But as the .blend files are part of the zip you can certainly also export in any other format of your choise.

Well - now there is some reason why I OpenSource it. Basically I hope for feedback which allows me to improve this guy. I'm not exactly blind, so I see for example that the shoulders do bend rather badly. I just have not yet the experience to fix such stuff easy. So any hints from the graphics experts would be very welcome. I will spend another day reworking the model in some weeks and hope you give me a few good hints until then :-)

And certainly I also welcome any improvements you might make. So if you enjoy texturing and are willing to release changes, or if you reworked the armature or something like that I would be glad to receive those changes. No must - it would just be a nice gesture.

Well, I hope you have some fun with Adam - maybe I find some time to add an Eve soon ^^
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Post by Mel »

He looks like he got a REALLY bad night :D

But he looks okay :)

Shoulders are hard to do, With plain bones it is really hard to get them good looking, but there is a way to get them. I posted a tutorial about human modelling here:

http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=31149

Specially this part is pretty good to get the basics of good skinning. Also, the modelling should have enough detail to make the shoulders look natural. Indeed it doesn't cover the shoulder part exactly, but the basics are pretty much the same.

http://www.3dtotal.com/ffa/tutorials/ma ... nning2.asp

I hope you find it useful
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
CuteAlien
Admin
Posts: 9691
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

Hey - I even remember that tutorial. But I did not remember it also contains skinning. Very nice, thx :-)
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Pyritie
Posts: 120
Joined: Fri Jan 16, 2009 12:59 pm
Contact:

Post by Pyritie »

Judging from the tiny screenshot the head is too big and the legs are too short
Hive Workshop | deviantART

I've moved to Ogre.
CuteAlien
Admin
Posts: 9691
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

Pyritie wrote:Judging from the tiny screenshot the head is too big and the legs are too short
Hm, I would say that's just the camera. But not sure.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
BlindSide
Admin
Posts: 2821
Joined: Thu Dec 08, 2005 9:09 am
Location: NZ!

Post by BlindSide »

Hey nice work on finally finishing that :)
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
FuzzYspo0N
Posts: 914
Joined: Fri Aug 03, 2007 12:43 pm
Location: South Africa
Contact:

Post by FuzzYspo0N »

yea, awesome work for programmer art. Great to see the progression to a final mesh.neat
oldskoolPunk
Posts: 199
Joined: Wed Nov 29, 2006 4:07 am

Post by oldskoolPunk »

Neat! Good progress :)

I dont think the shoulders are too bad at all. By moving the pivot out to the ball of the shoulder helps it alot.

Image
Signature? I ain't signin nuthin!
CuteAlien
Admin
Posts: 9691
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

oldskoolPunk wrote:Neat! Good progress :)

I dont think the shoulders are too bad at all. By moving the pivot out to the ball of the shoulder helps it alot.
Thanks, I will try that. I thought also about maybe adding another bone there.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Post Reply