• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Ragdoll system for Warcraft - is it possible?

Status
Not open for further replies.
Level 21
Joined
Mar 27, 2012
Messages
3,232
I know there is a GUI action for making head or chest of a unit face another unit.
I guess, by using JASS, you could also make other bones do that..

You're right, although this is incredibly hard to use for animations.
JASS:
native SetUnitLookAt takes unit whichUnit, string whichBone, unit lookAtTarget, real offsetX, real offsetY, real offsetZ returns nothing
 
Level 29
Joined
Jul 29, 2007
Messages
5,174
Ragdoll physics are not about having skeletal animation, but rather about removing control over the skeleton and letting physics do the rest.

A WC3-like example would be elemental models that "break" to different parts upon dying. Of course, that's a static animation, the idea is to make that work with physics (and allow things to stay attached if required through constraints).

It isn't too hard to do, but I am not sure if WC3 is a realistic target, seeing what a slowpoke it is.
And by "it" I mean collision detection/response and constraints (degrees of freedom, rotation constraints, distance constraints, etc.).
 
Last edited:
Status
Not open for further replies.
Top