9 lines
187 B
C#
9 lines
187 B
C#
using UnityEditor;
|
|
|
|
[CustomEditor(typeof(Slice))]
|
|
[CanEditMultipleObjects]
|
|
public class SliceEditor : Editor
|
|
{
|
|
// Empty editor required for custom property drawers to work properly
|
|
}
|