WuhuIslandTesting/Library/PackageCache/com.unity.render-pipelines.universal@8148.0.7-4/Editor/ScriptableRendererFeatureEditor.cs

15 lines
368 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
using UnityEngine;
using UnityEngine.Rendering.Universal;
namespace UnityEditor.Rendering.Universal
{
[CustomEditor(typeof(ScriptableRendererFeature), true)]
public class ScriptableRendererFeatureEditor : Editor
{
public override void OnInspectorGUI()
{
DrawPropertiesExcluding(serializedObject, "m_Script");
}
}
}