mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-04 19:49:02 +08:00
We make the assumption that the MMD world will _specifically_ be disabling layers 1 and 2.
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();
|
|
}
|
|
}
|
|
} |