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