Hi!
In the tutorial where I have to assign the particle system (ParticleSea) to the script, I do not have the option to simply drag and drop the particle system. The roll-out in the script only allows to attach a script and nothing else. Could you help me with this?
Make sure in ParticleSea.cs script you have following variable: public ParticleSystem particleSystem;
So code should look something like this:
using UnityEngine;
using System.Collections;
public class ParticleSea : MonoBehaviour {
public ParticleSystem particleSystem;
private ParticleSystem.Particle[] particlesArray;
// Other things
}