This commit is contained in:
Brady 2018-11-05 18:28:29 -06:00
parent fdee1b9453
commit ebd3ce42d0
No known key found for this signature in database
GPG Key ID: 73A788379A197567

View File

@ -50,11 +50,12 @@ public interface IPathingBehavior extends IBehavior {
boolean isPathing(); boolean isPathing();
/** /**
* Cancels the pathing behavior or the current path calculation. Also cancels all processes that could be controlling path. * Cancels the pathing behavior or the current path calculation, and all processes that could be controlling path.
* <p> * <p>
* Basically, "MAKE IT STOP". * Basically, "MAKE IT STOP".
* *
* @return whether or not the pathing behavior was canceled. All processes are guaranteed to be canceled, but the PathingBehavior might be in the middle of an uncancelable action like a parkour jump * @return Whether or not the pathing behavior was canceled. All processes are guaranteed to be canceled, but the
* PathingBehavior might be in the middle of an uncancelable action like a parkour jump
*/ */
boolean cancelEverything(); boolean cancelEverything();