mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-06 04:28:59 +08:00
27 lines
768 B
C#
27 lines
768 B
C#
|
using UnityEditor;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.editor
|
|||
|
{
|
|||
|
[CustomEditor(typeof(ModularAvatarVRChatSettings))]
|
|||
|
internal class VRChatSettingsEditor : MAEditorBase
|
|||
|
{
|
|||
|
protected override void OnInnerInspectorGUI()
|
|||
|
{
|
|||
|
serializedObject.Update();
|
|||
|
|
|||
|
EditorGUI.BeginChangeCheck();
|
|||
|
|
|||
|
EditorGUILayout.PropertyField(
|
|||
|
serializedObject.FindProperty(nameof(ModularAvatarVRChatSettings.m_mmdWorldSupport)),
|
|||
|
Localization.G("platform.vrchat.settings.mmd_world_support")
|
|||
|
);
|
|||
|
|
|||
|
if (EditorGUI.EndChangeCheck())
|
|||
|
{
|
|||
|
serializedObject.ApplyModifiedProperties();
|
|||
|
}
|
|||
|
|
|||
|
Localization.ShowLanguageUI();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|