暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Deprecated.cs 684B

123456789101112131415161718192021
  1. using System;
  2. namespace UnityEditor.Rendering.Universal
  3. {
  4. /// <summary>
  5. /// Editor script for a <c>ForwardRendererData</c> class.
  6. /// </summary>
  7. [Obsolete("ForwardRendererDataEditor has been deprecated. Use UniversalRendererDataEditor instead (UnityUpgradable) -> UniversalRendererDataEditor", true)]
  8. public class ForwardRendererDataEditor : ScriptableRendererDataEditor
  9. {
  10. /// <inheritdoc />
  11. public override void OnInspectorGUI()
  12. {
  13. throw new NotSupportedException("ForwardRendererDataEditor has been deprecated. Use UniversalRendererDataEditor instead");
  14. }
  15. }
  16. static partial class EditorUtils
  17. {
  18. }
  19. }