19 lines
577 B
C#
19 lines
577 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityEditor.Rendering.Universal
|
||
|
{
|
||
|
[Obsolete("ForwardRendererDataEditor has been deprecated. Use UniversalRendererDataEditor instead (UnityUpgradable) -> UniversalRendererDataEditor", true)]
|
||
|
public class ForwardRendererDataEditor : ScriptableRendererDataEditor
|
||
|
{
|
||
|
public override void OnInspectorGUI()
|
||
|
{
|
||
|
throw new NotSupportedException("ForwardRendererDataEditor has been deprecated. Use UniversalRendererDataEditor instead");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static partial class EditorUtils
|
||
|
{
|
||
|
}
|
||
|
}
|