コード例 #1
0
 public override void OnInspectorGUI()
 {
     DrawDefaultInspector();
     command = GUILayout.TextArea(command);
     if (GUILayout.Button("Compile"))
     {
         RihaCompiler rc = target as RihaCompiler;
         rc.Execute(command);
     }
 }