mixedreality/com.microsoft.mixedreality..../Core/Inspectors/HoverLightInspector.cs

37 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Utilities;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Editor
{
[CustomEditor(typeof(HoverLight))]
public class HoverLightInspector : UnityEditor.Editor
{
private bool HasFrameBounds() { return true; }
private Bounds OnGetFrameBounds()
{
var light = target as HoverLight;
Debug.Assert(light != null);
return new Bounds(light.transform.position, Vector3.one * light.Radius);
}
[MenuItem("GameObject/Light/Hover Light")]
private static void CreateHoverLight(MenuCommand menuCommand)
{
GameObject hoverLight = new GameObject("Hover Light", typeof(HoverLight));
// Ensure the light gets re-parented to the active context.
GameObjectUtility.SetParentAndAlign(hoverLight, menuCommand.context as GameObject);
// Register the creation in the undo system.
Undo.RegisterCreatedObjectUndo(hoverLight, "Create " + hoverLight.name);
Selection.activeObject = hoverLight;
}
}
}