Minor compile error:
namespace TSCubemapGenerator.Window
{
public class CubemapGeneratorEditorWindow : EditorWindow
{
[MenuItem("TSCubemapGenerator/Open Tool Window")]
public static void ShowWindow()
{
EditorWindow.GetWindow(
t: typeof(CubemapGeneratorEditorWindow),
utility: false,
title: "TSCubemapGenerator");
}
Had to change:
t: typeof(CubemapGeneratorEditorWindow),
to:
windowType: typeof(CubemapGeneratorEditorWindow),
So far, it looks to be working.