14 lines
275 B
C#
14 lines
275 B
C#
|
using UnityEngine.Rendering.Universal;
|
||
|
|
||
|
|
||
|
namespace UnityEditor.Rendering.Universal
|
||
|
{
|
||
|
[CustomEditor(typeof(CompositeShadowCaster2D))]
|
||
|
internal class CompositeShadowCaster2DEditor : Editor
|
||
|
{
|
||
|
public override void OnInspectorGUI()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|