您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
772 B
22 行
772 B
using UnityEngine.Rendering.Universal;
|
|
|
|
namespace UnityEditor.Rendering.Universal
|
|
{
|
|
[CanEditMultipleObjects]
|
|
// Disable the GUI for additional camera data
|
|
[CustomEditor(typeof(UniversalAdditionalCameraData))]
|
|
class UniversalAdditionalCameraDataEditor : Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
}
|
|
[MenuItem("CONTEXT/LWRPAdditionalCameraData/Remove Component")]
|
|
static void RemoveComponent(MenuCommand command)
|
|
{
|
|
if (EditorUtility.DisplayDialog("Remove Component?", "Are you sure you want to remove this component? If you do, you will lose some settings.", "Remove", "Cancel"))
|
|
{
|
|
Undo.DestroyObjectImmediate(command.context);
|
|
}
|
|
}
|
|
}
|
|
}
|