using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEditor; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UIElements; namespace BITKit.GameEditor { //This is a helper can make scene uncategory assets to be categorized public sealed class SceneBasedEnvironmentCategoryWindow : EditorWindow { [MenuItem("Tools/Scene/Category Window")] public static void Open() { var window = GetWindow(); window.Show(); } private Label reportLabel; private void OnEnable() { Rebuild(); } private void Rebuild() { var button = rootVisualElement.Create