target
The object being inspected.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
public Object target { get; set; }
Remarks
For editors that support multi-object editing, the target property should not be used inside Editor.OnInspectorGUI() since it only refers to the first of the edited objects. It should still be used in OnSceneGUI and Editor.OnPreviewGUI, which will be called once for each of the selected objects with the target property referring to each of them in turn.