Hi! I’m writing something like a Sim Life / RTS hybrid.
I want my ‘characters’ to be perfectly autonomous, and to interact realistically with their environment. A lot of the terrain is going to be rough and so I would rather not have pre-scripted animations.
It seems like there are a couple of ways to get animated characters that interact with their environment:
Animated rigidbodies with isKinematic, using the character stuff that is used in the FPS demo.
As above, using my own animations.
Rigidbodies without isKinematic, connected by springs and influenced via forces.
[/list:u:1b07dd5581]
Now, all the documentation tells me not to do the last part, because you “want characters to defy physics”.
Well, I would like my characters to not defy physics; I’d like them to be constrained by physics. I recognize that this will be some significant amount of work to get the forces, masses, and the like correct, but given that, I have a question:
Will keeping all my characters physical pose serious problems performance/otherwise?