Singularity/Library/PackageCache/com.unity.render-pipelines..../Editor/Deprecated.cs
2024-05-06 11:45:45 -07:00

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
{
}
}