Path planning to a location
Location nextLocation = ... center location of next cell getAct().act(new Move().setFirstLocation(nextLocation));and moved to next location when the
bot.getVelocity().isZero()
It's working but the problem is the movement is not continuous, it's jerky. I tried to use pathPlanner and pathExecutor in the tutorial, however, in my experience, it only works in between NavPoints. Is there a way to make the movement more natural and continuous and still not use NavPoint as use only target Location information.