mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-06 04:28:59 +08:00
30 lines
848 B
C#
30 lines
848 B
C#
|
using UnityEditor;
|
|||
|
using static nadena.dev.modular_avatar.core.editor.Localization;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.editor
|
|||
|
{
|
|||
|
[CustomEditor(typeof(ModularAvatarMMDLayerControl))]
|
|||
|
internal class MMDModeEditor : MAEditorBase
|
|||
|
{
|
|||
|
private SerializedProperty m_p_DisableInMMDMode;
|
|||
|
|
|||
|
private void OnEnable()
|
|||
|
{
|
|||
|
m_p_DisableInMMDMode =
|
|||
|
serializedObject.FindProperty(nameof(ModularAvatarMMDLayerControl.m_DisableInMMDMode));
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnInnerInspectorGUI()
|
|||
|
{
|
|||
|
serializedObject.Update();
|
|||
|
|
|||
|
LogoDisplay.DisplayLogo();
|
|||
|
|
|||
|
EditorGUILayout.PropertyField(m_p_DisableInMMDMode, G("mmd_mode.disable_in_mmd_mode"));
|
|||
|
|
|||
|
ShowLanguageUI();
|
|||
|
|
|||
|
serializedObject.ApplyModifiedProperties();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|