Exemplo n.º 1
0
        private static void OpenCustomTools()
        {
            CustomExecuter tools = EditorWindow.GetWindow <CustomExecuter>();

            tools.titleContent.text = "Custom Executer";
            tools.minSize           = new Vector2(500, 600);
            tools.Initialization();
            tools.Show();
        }
Exemplo n.º 2
0
        private static void OpenCustomExecuter()
        {
            CustomExecuter tools = EditorWindow.GetWindow <CustomExecuter>();

            tools.titleContent.image = EditorGUIUtility.IconContent("LightProbeProxyVolume Icon").image;
            tools.titleContent.text  = "Custom Executer";
            tools.minSize            = new Vector2(500, 600);
            tools.Initialization();
            tools.Show();
        }