how can I move the enemy with Vector3.Slerp having the direction?
void Update()
{
direction = (player.position - enemy.position).normalized;
float f = (Time.time - startTime) / 1500;
enemy.transform.position = Vector3.Slerp(enemy.position - planet.position, direction*3, f);
//the enemy must follow the player along the hoping world
}