WuhuIslandTesting/Library/PackageCache/com.unity.render-pipelines.universal@8148.0.7-4/Editor/Deprecated.cs.bak
2025-01-07 02:06:59 +01:00

17 lines
558 B
C#

using System;
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
{
}
}