im new to unity and i have a project that needs to be delivered in a 20 days .
im requested to write a basic AI scripts for some enemies, they will have to follow the character when it gets close , evade walls and attack him once they reach him .
my question is :
what are the best resources to learn this and make it happen ASAP?
please share any scripts , examples or a links that might help me
var target : Transform;
var enemy : Transform;
var moveSpeed : float = 5.0;
You can select the items as the target and the enemy (which chances are is the gameobject the script is attached to) in the unity Inspector view under the script options. The complete script should look something like this:
var target : Transform;
var enemy : Transform;
var moveSpeed : float = 5.0;
function Update() {
enemy.transform.LookAt(target);