Hi,
Since the latest version I noticed that at the start of an ActionList the OnUpdate gets called twice during that frame, causing problems in my project.
I removed the OnUpdate in ActionList.OnExecute, and that seems to solve it for me.
Which seems logical, as its base class ActionTask already makes sure OnUpdate gets called at the start.
Thanks for the fix. Yes, I made the base ActionTask class call OnUpdate right after OnExecute in the last version and obviously forgot to remove the OnUpdate from within ActionList. :/ It is indeed not needed anymore to be there.