Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created January 31, 2017 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubaki/e8ef212d8cf8c8dddd0c0bdcce9fa44d to your computer and use it in GitHub Desktop.
Save tsubaki/e8ef212d8cf8c8dddd0c0bdcce9fa44d to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEditor;
public class EditorWindowTest : EditorWindow
{
public string message; // messageスタティックやめるってよ
[MenuItem("Window/Show")]
static void Init()
{
var window = EditorWindow.CreateInstance<EditorWindowTest> ();
window.message = "C";
window.Show ();
}
void OnGUI()
{
GUILayout.Label (message);
if (GUILayout.Button ("PUSH")) { message += "#"; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment