mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-01 12:15:05 +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
|
|
}
|
|
}
|
|
} |