Hello there,
I apologize if this is a common question. I tried my best to search through existing questions for a good amount of time but couldn’t find anything relevant.
I’m working on a 2.5D Castlevania style game. I’ve been trying to figure out the best way to implement attacks for the character and enemies without physically moving them forward to force a collision. They are mostly punch/kick animations with a limited number of attacks with melee weapons. The player character and enemies both use Character Controller components.
The only idea I’ve come up with so far is attaching colliders to the hand and foot joints of the models so that when they plays their animations, the colliders are driven forward through them, but this would require a separate script for a GameObject attached to the hands/feet correct (I’m working in C#)? Is this a sensible solution to this game mechanic? Is it possible to have a mesh collider that moves along with animations? I’ve tried to do this, but the meshes all seem to be stuck in the T-pose.
I ask because I followed the Lerpz 2D tutorial’s system for handling footsteps sounds and particles, and I thought it was great while setting up my intro stage but it’s becoming rather tedious to have to add in the scripts for every surface, even while using prefabs because the levels I’m designing after that are rather large and have a lot of unique surfaces.
Thanks for reading and I hope someone can suggest a more efficient method.