How to make basic non hostile ai that runs around?
I am making a game and I need to know how to make AI that runs around in a panic. I am trying to do it so then they have life instead of standing or walking around.
if you would like to help me get started I would be appreciated. Also I code in c# so no java please or java and c#
Comment
Pretty broad question, therefore better sutied to the forums.
Anyway :) Use Random.Range to find random xz (possible y) values for a target Vector3 position. use Vector3.Lerp, Transform.Translate, Rigidbody.AddForce etc. to move the AI entity.
Your answer
