Scene picker: Added option to add groups of scenes to open
This commit is contained in:
parent
41604b98e7
commit
a86f76904e
28 changed files with 1052 additions and 225 deletions
14
Editor/Toolbar/Tools/ScenePickerObjects/SceneGroup.cs
Normal file
14
Editor/Toolbar/Tools/ScenePickerObjects/SceneGroup.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Module.NavigationTool.Editor.Toolbar
|
||||
{
|
||||
[Serializable]
|
||||
public sealed class SceneGroup
|
||||
{
|
||||
public string name;
|
||||
public ESceneGroupFilterType filterType;
|
||||
public string optionalMainScenePath;
|
||||
public List<string> filters = new();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue