Im trying to move a particle towards my player .... Im pretty new in unity so any help would be greatly appreciated? Right now this class just moves the particle in a specific direction
using UnityEngine;
using System.Collections;
public class Particle : MonoBehaviour
{
public GameObject particle;
// Update is called once per frame
void Update ()
{
particle.transform.Translate(1, 0, 1);
}
}