public void ShowWindow(SPData sPData, SerializedProperty follower, FollowerSettingsType _followerSettingsType)
    {
        if (Banner == null)
        {
            Banner = new GUIContent((Texture2D)EditorGUIUtility.Load("Assets/ElseForty/Media/Banner.png"));
        }
        windw                = this;
        windw.Follower       = follower;
        windw.SPData         = sPData;
        followerSettingsType = _followerSettingsType;
        if (oldWindw != null)
        {
            oldWindw.Close();
        }
        oldWindw = windw;

        Events();
        SceneView.RepaintAll();
    }