mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-06 14:45:06 +08:00
23 lines
652 B
C#
23 lines
652 B
C#
|
using UnityEditor;
|
|||
|
using static nadena.dev.modular_avatar.core.editor.Localization;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.editor
|
|||
|
{
|
|||
|
[CustomEditor(typeof(ModularAvatarReplaceObject))]
|
|||
|
internal class ReplaceObjectEditor : MAEditorBase
|
|||
|
{
|
|||
|
private SerializedProperty _targetObject;
|
|||
|
|
|||
|
protected void OnEnable()
|
|||
|
{
|
|||
|
_targetObject = serializedObject.FindProperty("targetObject");
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnInnerInspectorGUI()
|
|||
|
{
|
|||
|
EditorGUILayout.PropertyField(_targetObject, G("replace_object.target_object"));
|
|||
|
|
|||
|
Localization.ShowLanguageUI();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|