Skip to content

Can I make EditorWindow with this plugins? #109

Answered by TylerTemp
locus84 asked this question in Q&A
Discussion options

You must be logged in to vote

That's a in plan feature (but not documented in milestone yet). However, even do, I'd prefer to implement one like Odin's OdinWindow, rather than a thing like NaughtyAttribute's solution.

At the moment it's not possible, yet.


Before this feature is added, this is what I do daily on my work (only example of UI Toolkit, won't work for IMGUI):

public class InRoundStatisticsPanel: ScriptableObject
{
    public string[] files;

    [Button]
    public void ClickButton()
    {
        Debug.Log("clicked");
    }
}

public class EditorInRoundStatisticsPanelEditorWindow: EditorWindow
{
    [MenuItem("Tools/MyTools")]
    public static void OpenWindow()
    {
        EditorWindow window = GetWindow(

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@locus84
Comment options

@TylerTemp
Comment options

Answer selected by locus84
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants