Skip to content

Instantly share code, notes, and snippets.

@sokuhatiku
Created February 7, 2017 07:11
Show Gist options
  • Save sokuhatiku/392459674b84fdb63236fb5ef260aba7 to your computer and use it in GitHub Desktop.
Save sokuhatiku/392459674b84fdb63236fb5ef260aba7 to your computer and use it in GitHub Desktop.
Draw "Script" field and "Editor" field.
EditorGUI.BeginDisabledGroup(true);
EditorGUILayout.ObjectField("Script", MonoScript.FromMonoBehaviour((MonoBehaviour)target), typeof(MonoScript), false);
EditorGUILayout.ObjectField("Editor", MonoScript.FromScriptableObject(this), typeof(MonoScript), false);
EditorGUI.EndDisabledGroup();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment