Follow can be useful for building things that need to follow behind another actor.
This method will cause the entity to follow another at a specified distance
const friend = new ex.Actor({...});
const target = new ex.Actor({...});
// Follow the target at a distance of 100 pixels
friend.actions.follow(target, 100)