PolyLine Script form Unify Wiki help...

Hey! I really need to use this script: http://wiki.unity3d.com/index.php/PolyLineEditor but when I put it in the editor folder an error pops up that says: “Can’t find PolyLine”. Could anybody help me please? Thanks in advance!

This is a pretty old question, but I stumbled upon the same problem, and the answer is pretty simple (for those that are still in need of this handy little editor and have the same issue getting it up and running): just create an empty GO and attach the following script to it:

using UnityEngine;
using System.Collections;

public class PolyLine : MonoBehaviour {
   public Vector3[] positions = new Vector3[0];
}

As soon as you select this object, you’ll get the in-scene additional GUI to edit the PolyLine points…

Regards, habitoti