I'm currently using the latent AIController function MoveTo() to move my pawns very short distances. However, there are times when I need to stop MoveTo() before it reaches it's destination. (i.e. in NotifyBump() in my AIController)
var float MoveTimer; appears to be what I'm looking for but setting MoveTimer to a very short time value doesn't seem to force MoveTo() to return before it reaches it's target location.
Any idea to why?
Or another way to force MoveTo() to return before it reaches it target location?
Thanks!
var float MoveTimer; appears to be what I'm looking for but setting MoveTimer to a very short time value doesn't seem to force MoveTo() to return before it reaches it's target location.
Any idea to why?
Or another way to force MoveTo() to return before it reaches it target location?
Thanks!
Comment