Hello,
until now i used a prefab for AI controlled characters similar to the one described in the FPS tutorial, which is based on the character controller. However, the character controller simply uses a capsule collider. Though thats fine for calculating collisions with the world, its not the most realistic way of calculating gunshot hits, since you can easily kill a character by shooting past him, still hitting the capsule. It also prevents me from having different hit zones, that i would like to use (taking a bullet in the head tends to be more lethal than a hole in you arm ^^). My approach was to have the root game object that contains the AI script in one layer, and a child with another collider in another layer, using the root for world collisions only and the child for the bullets. Though that works, i have no idea how to make colliders follow the current animations, e.g. attach them to bones.
Any ideas?