Skip to content

Instantly share code, notes, and snippets.

@bzgeb
Created September 21, 2012 15:50
Show Gist options
  • Save bzgeb/3762278 to your computer and use it in GitHub Desktop.
Save bzgeb/3762278 to your computer and use it in GitHub Desktop.
Template for Custom Inspector Script in Unity3d
using UnityEngine;
using UnityEditor;
[CustomEditor (typeof(Trigger))]
[CanEditMultipleObjects()]
public class TriggerEditor : Editor
{
private SerializedObject obj;
private SerializedProperty radius;
public void OnEnable()
{
obj = new SerializedObject(target);
radius = obj.FindProperty("radius");
}
public override void OnInspectorGUI()
{
obj.Update();
GUIStyle style = new GUIStyle();
style.font = EditorStyles.boldFont;
EditorGUILayout.LabelField("Trigger", style, null);
EditorGUILayout.PropertyField(radius);
obj.ApplyModifiedProperties();
}
public void OnSceneGUI()
{
// Implement what you want to see in scene view here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment