Is it possible to stop/abort a Task when entering the OnStart() function without entering the OnUpdate() function?

Explaysive

New member
From the 2 comments from the below screenshot, you can see that I only want to enter OnUpdate() when finishing OnStart(). I am currently checking status in OnUpdate(), but the checks seem irrelevant if there is a way not to enter OnUpdate().

1680886092000.png
 
No, OnUpdate is always called regardless. OnUpdate will be called during the same tick as OnUpdate so you can just return the status there.
 
Top