study/first_study/Library/PackageCache/com.unity.render-pipelines.universal@d10049dfa479/Editor/Deprecated.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09:00

22 lines
720 B
C#

using System;
namespace UnityEditor.Rendering.Universal
{
/// <summary>
/// Editor script for a <c>ForwardRendererData</c> class.
/// </summary>
[Obsolete("ForwardRendererDataEditor has been deprecated. Use UniversalRendererDataEditor instead #from(2021.2) #breakingFrom(2021.2) (UnityUpgradable) -> UniversalRendererDataEditor", true)]
public class ForwardRendererDataEditor : ScriptableRendererDataEditor
{
/// <inheritdoc />
public override void OnInspectorGUI()
{
throw new NotSupportedException("ForwardRendererDataEditor has been deprecated. Use UniversalRendererDataEditor instead");
}
}
static partial class EditorUtils
{
}
}