1.1.0: Added README and ToolbarSettings, so visibility of tools can be set in Preferences -> Module -> Toolbar
This commit is contained in:
parent
e1d2deb4c5
commit
9802f8aaa3
23 changed files with 297 additions and 43 deletions
|
|
@ -1,12 +1,13 @@
|
|||
using Module.NavigationTool.Editor.Toolbar;
|
||||
using UnityEngine;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Module.NavigationTool.Editor
|
||||
namespace Module.NavigationTool.Editor.Toolbar
|
||||
{
|
||||
public abstract class AbstractToolbarDrawer
|
||||
{
|
||||
public abstract bool Visible { get; }
|
||||
public abstract bool Enabled { get; }
|
||||
public abstract EToolbarPlacement Placement { get; }
|
||||
public abstract int Priority { get; }
|
||||
|
||||
private Rect rect;
|
||||
protected Styles styles;
|
||||
|
|
@ -18,7 +19,6 @@ namespace Module.NavigationTool.Editor
|
|||
|
||||
public virtual void Update()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void OnGUI()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue