mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-02-02 11:42:57 +08:00
23 lines
706 B
C#
23 lines
706 B
C#
|
using UnityEditor;
|
|||
|
using UnityEditor.Experimental.SceneManagement;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace net.fushizen.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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|