Is it possible or do we need to completely redesign from scratch all animation and start all over again? ( e.g. DOTS Animation Jobs + custom system and components to apply all the weights\time\animation clip per node onto root gameObject)
It is very frustrating when Unity can’t even see the obvious use cases…
This is not exactly evaluated as you wish, as PlayableDirector will schedule and batch all of the graphs somewhere from update to LateUpdate - only once per frame.
Additionally - when you have IK - if you are using manually evaluation - your IK Rig should sync target to the Rig ( Rig builder has it’s own Rig internal ECS systems and components) via
// TODO: This is a separate single thread call ( in the main thread) for each character, see if we can also batch it.
RigBuilder.SyncLayers();
I’m not quite sure on how to batch that separately and make sure it will be evaluated before the animation graph is evaluated by the director ( in the same frame).