Rasagar/Library/PackageCache/com.unity.render-pipelines.high-definition/Editor/Sky/StaticLightingSkyEditor.cs

17 lines
442 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using UnityEditor;
using UnityEngine;
using UnityEngine.Rendering.HighDefinition;
namespace UnityEditor.Rendering.HighDefinition
{
[CustomEditor(typeof(StaticLightingSky))]
[DisallowMultipleComponent]
class StaticLightingSkyEditor : Editor
{
public override void OnInspectorGUI()
{
EditorGUILayout.LabelField(EditorGUIUtility.TrTextContent("Go to LightingWindow for edition."));
}
}
}