This is probably an easy one, but I don’t wee how to call FixedUpdate or LateUpdate on a custom task. ActionTask appears to only have OnUpdate. I see static methods AddFixedUpdateMethod and AddLateUpdateMethod in MonoManager, but I don’t see them being called anywhere. Any thoughts on how to use FixedUpdate in an custom task?
ActionTasks only get an Update callback for performance while FixedUpdate or LateUpdate callbacks should be manually registered if need so.
Here is example of how to do that: