Character Animation System
Re: Character Animation System
On an unrelated note, colors can be many things, but in skinning, it usually means either the amount of influences a vertex has.
For instance, a red vertex is influenced by one bone, green means 2 bones, blue means 3 and so on. The tipical amount of bone influences a vertex use to have is less than 4, more is for really complex meshes, hence, it is normal to map the rgb values to the strength of the vertices, that is the most tipical way to see them.
For instance, a red vertex is influenced by one bone, green means 2 bones, blue means 3 and so on. The tipical amount of bone influences a vertex use to have is less than 4, more is for really complex meshes, hence, it is normal to map the rgb values to the strength of the vertices, that is the most tipical way to see them.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Re: Character Animation System
Yes, indeed. Example below:Mel wrote:On an unrelated note, colors can be many things, but in skinning, it usually means either the amount of influences a vertex has.
For instance, a red vertex is influenced by one bone, green means 2 bones, blue means 3 and so on. The tipical amount of bone influences a vertex use to have is less than 4, more is for really complex meshes, hence, it is normal to map the rgb values to the strength of the vertices, that is the most tipical way to see them.
Small update:
- Skin fixed
- Texture fixed
Last edited by RdR on Thu Oct 25, 2012 1:56 pm, edited 2 times in total.
Re: Character Animation System
CAS is a now fully working animation system and integrated in some projects.
To demonstrate the library we started on a viewer application to load a character with animation(s) and skin(s).
To demonstrate the library we started on a viewer application to load a character with animation(s) and skin(s).
Re: Character Animation System
Pretty Impressive! Hard to think of any suggestions, since you've already thought it out so well.
For some nicer animations I can suggest you try out some free motion capture files from the internet, I think somewhere on the Stanford University website are some from an old project. Otherwise I can only wish you good luck and I hope you can achieve what you set out for.
For some nicer animations I can suggest you try out some free motion capture files from the internet, I think somewhere on the Stanford University website are some from an old project. Otherwise I can only wish you good luck and I hope you can achieve what you set out for.
Re: Character Animation System
.BVH files for motion capture are text based, i think it is a sort of XML, maybe you could create a loader for them.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Re: Character Animation System
actually motion capture (file) support would be really cool
I'm not sure any of us will ever be able to use CAS in our hobby projects though
personally I'd be more than happy to pay a license for it, but work like this is rarely free
I'm not sure any of us will ever be able to use CAS in our hobby projects though
personally I'd be more than happy to pay a license for it, but work like this is rarely free
Re: Character Animation System
Re: Character Animation System
Currenty working on Inverse Kinematics support for the animation library.
Implemented the CCD (Cyclic Coordinate Descent) algorithm:
http://youtu.be/xinNK498OxA
Still need to add constraints
Also added some new features since last time I posted:
* Procedural animation support
* Character bone attachments
* Per bone/per animation weighting
* Per bone/per animation scaling
* Event callbacks
Implemented the CCD (Cyclic Coordinate Descent) algorithm:
http://youtu.be/xinNK498OxA
Still need to add constraints
Also added some new features since last time I posted:
* Procedural animation support
* Character bone attachments
* Per bone/per animation weighting
* Per bone/per animation scaling
* Event callbacks
Re: Character Animation System
Added more Inverse Kinematics support: Look at a specific target with a chain of bones
http://www.youtube.com/watch?v=xPf-yeRaLf0
http://www.youtube.com/watch?v=xPf-yeRaLf0
-
- Posts: 13
- Joined: Sat Aug 16, 2014 3:40 pm
Re: Character Animation System
The project looks really good. Is it available open source?
Re: Character Animation System
Wow this is amazing, where's the GitHub link? :)
Dream Big Or Go Home.
Help Me Help You.
Help Me Help You.
Re: Character Animation System
poke
Live long and phosphor!
-- https://github.com/netpipe/Luna Game Engine Status 95%
-- https://github.com/netpipe/Luna Game Engine Status 95%
Re: Character Animation System
Where can this be downloaded?