mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-06 14:45:06 +08:00
14 lines
331 B
C#
14 lines
331 B
C#
|
using UnityEditor;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.editor
|
|||
|
{
|
|||
|
[CustomEditor(typeof(ModularAvatarConvertConstraints))]
|
|||
|
[CanEditMultipleObjects]
|
|||
|
internal class MAConvertConstraintsEditor : MAEditorBase
|
|||
|
{
|
|||
|
protected override void OnInnerInspectorGUI()
|
|||
|
{
|
|||
|
// no UI
|
|||
|
}
|
|||
|
}
|
|||
|
}
|