mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
16 lines
429 B
C#
16 lines
429 B
C#
using UnityEditor;
|
|
using UnityToolbarExtender;
|
|
|
|
namespace TEngine
|
|
{
|
|
[InitializeOnLoad]
|
|
public partial class UnityToolbarExtenderLeft
|
|
{
|
|
static UnityToolbarExtenderLeft()
|
|
{
|
|
ToolbarExtender.LeftToolbarGUI.Add(OnToolbarGUI_SceneLauncher);
|
|
EditorApplication.playModeStateChanged += OnPlayModeStateChanged;
|
|
EditorApplication.quitting += OnEditorQuit;
|
|
}
|
|
}
|
|
} |