Firstborn/Library/PackageCache/com.unity.render-pipelines..../Editor/Deprecated.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05: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
{
}
}