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