RichAI destination setting choices?

RichAI is great out of the box. Besides attaching an AIDestinationSetter with a target transform as per tutorial/example, is there another way to tell RichAI where the destination is? Ideally I just want to give it a Vector3 directly.

Hi

Yes, you can set the destination property on the RichAI component. This is what the AIDestinationSetter does behind the scenes. Just make sure you remove the AIDestinationSetter component before you try it, otherwise the AIDestinationSetter might override what you set it to.

var ai = GetComponent<RichAI>();
ai.destination = new Vector3(1,2,3);

See https://arongranberg.com/astar/docs/iastarai.html#destination

Somehow missed that, thanks!