module-navigation-tool/Editor/Toolbar/Tools/ScenePickerObjects/SceneGroup.cs
Anders Ejlersen dd80d46ebb Scene Picker: Modified scene groups to contain LoadAsGroup, SortAsGroup and SortInSubmenuAsGroup
### Changed
-  Scene groups to contain three different types of behaviours for grouping:
   - Load As Group: Groups all scenes into a single entry
   - Sort As Group: Sorts all scenes into entries close to each other in the dropdown
   - Sort In Submenu As Group: Sorts all scenes into entries in a submenu

### Removed
- Removed "Scene sorting by Asset label" groups
2025-03-29 11:12:03 +01:00

16 lines
437 B
C#

using System;
using System.Collections.Generic;
namespace Module.NavigationTool.Editor.Toolbar
{
[Serializable]
public sealed class SceneGroup
{
public string name;
public ESceneGroupFilterType filterType;
public ESceneGroupBehaviourType behaviourType;
public string optionalMainScenePath;
public string subMenuPath = "Submenu";
public List<string> filters = new();
}
}