public void OnSceneGUI()
        {
            GameFieldManager gameFieldManager = (GameFieldManager)target;

            foreach (IndexedVector2 point in gameFieldManager.path)
            {
                Handles.Label(point + gameFieldManager.GetPointNormal(point.index) * GameFieldManager.Offset, point.index.ToString());
            }
        }