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