0.3.0: Added history list

This commit is contained in:
Anders Ejlersen 2021-02-14 13:49:25 +01:00
parent 1e1736f94a
commit 9b73200c73
38 changed files with 662 additions and 18 deletions

View file

@ -1,7 +1,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
internal sealed class EditorFavoritesPopupWindowAddFolder : PopupWindowContent
{

View file

@ -1,7 +1,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
internal sealed class EditorFavoritesPopupWindowContextMenu : PopupWindowContent
{

View file

@ -1,7 +1,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
internal sealed class EditorFavoritesPopupWindowRenameFolder : PopupWindowContent
{

View file

@ -2,7 +2,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
internal sealed class EditorFavoritesWindow : EditorWindow
{

View file

@ -1,6 +1,6 @@
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
internal sealed class Styles
{

View file

@ -1,6 +1,6 @@
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
internal abstract class AbstractEditorFavoritesView
{

View file

@ -2,7 +2,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
[Serializable]
internal sealed class EditorFavoritesViewSearchList : AbstractEditorFavoritesView

View file

@ -2,7 +2,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
[Serializable]
internal sealed class EditorFavoritesViewTools : AbstractEditorFavoritesView

View file

@ -2,7 +2,7 @@
using UnityEditor;
using UnityEngine;
namespace Game.NavigationTool.Editor
namespace Game.NavigationTool.Editor.Favorite
{
[Serializable]
internal sealed class EditorFavoritesViewTreeList : AbstractEditorFavoritesView