2022-11-07 20:43:51 -08:00
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEditor.Experimental.SceneManagement;
|
|
|
|
|
using UnityEngine;
|
2022-12-09 11:40:16 -08:00
|
|
|
|
using UnityEngine.SocialPlatforms;
|
2022-11-07 20:43:51 -08:00
|
|
|
|
|
2022-11-10 20:39:58 -08:00
|
|
|
|
namespace nadena.dev.modular_avatar.core.editor
|
2022-11-07 20:43:51 -08:00
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-09 11:40:16 -08:00
|
|
|
|
|
|
|
|
|
public static void DisplayVRCSDKVersionWarning()
|
|
|
|
|
{
|
|
|
|
|
EditorGUILayout.HelpBox(Localization.S("hint.bad_vrcsdk"), MessageType.Error);
|
|
|
|
|
}
|
2022-11-07 20:43:51 -08:00
|
|
|
|
}
|
|
|
|
|
}
|