I tried the example in the Path Follow chapter in the manual.
But I am not able to change the parameters in this way, that Ralph is reaching the set arrow position.
...
self.AIchar = AICharacter("seeker", self.seeker, 100, 0.05, 5)
self.AIworld.addAiChar(self.AIchar)
self.AIbehaviors = self.AIchar.getAiBehaviors()
#Path follow (note the order is reveresed)
self.AIbehaviors.pathFollow(0.9)
self.AIbehaviors.addToPath(self.target4.getPos())
self.AIbehaviors.addToPath(self.target4.getPos())
self.AIbehaviors.addToPath(self.target3.getPos())
self.AIbehaviors.addToPath(self.target2.getPos())
self.AIbehaviors.addToPath(self.target1.getPos())
self.AIbehaviors.startFollow()
...
He makes a turn to the next target before he reaches the actual target.
How I can change this behavior/traverse?
I was not able to find any sufficient information about that.
Thanks.