You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
464 B
13 lines
464 B
namespace UnityEditor.Rendering.HighDefinition
|
|
{
|
|
static class ContextualMenuDispatcher
|
|
{
|
|
[MenuItem("CONTEXT/HDAdditionalReflectionData/Remove Component")]
|
|
[MenuItem("CONTEXT/HDAdditionalCameraData/Remove Component")]
|
|
[MenuItem("CONTEXT/HDAdditionalLightData/Remove Component")]
|
|
static void RemoveComponent(MenuCommand command)
|
|
{
|
|
RemoveAdditionalDataUtils.RemoveAdditionalData(command);
|
|
}
|
|
}
|
|
}
|