mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-18 12:20:06 +08:00
318599ae3d
Closes: #84
23 lines
704 B
C#
23 lines
704 B
C#
using UnityEditor;
|
|
using UnityEditor.Experimental.SceneManagement;
|
|
using UnityEngine;
|
|
|
|
namespace nadena.dev.modular_avatar.core.editor
|
|
{
|
|
internal static class InspectorCommon
|
|
{
|
|
internal static void DisplayOutOfAvatarWarning(Object[] targets)
|
|
{
|
|
if (PrefabStageUtility.GetCurrentPrefabStage() != null) return;
|
|
if (targets.Length != 1) return;
|
|
|
|
var target = targets[0] as Component;
|
|
if (target == null) return;
|
|
|
|
if (RuntimeUtil.FindAvatarInParents(target.transform) == null)
|
|
{
|
|
EditorGUILayout.HelpBox(Localization.S("hint.not_in_avatar"), MessageType.Warning);
|
|
}
|
|
}
|
|
}
|
|
} |