I want to create a combat system, where a character has access to ~10 weapon types, all of which have unique animations for idling and autoattacking, as well as 4 special moves.
Thing is, all weapons need to be controlled identically and, while animations are different, animation transitions are essentially governed by the exact same set of rules (accomodating for various animation lengths). So if i were to create an animator controller for each weapon type, i’d then have 10 essentially identical animator controllers.
Is multiple near-identical animator controllers the only way or there is some way to make an abstraction? (F/ex, by assigning relevant clips at runtime)