No Description
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.

BuiltInToURPConverterContainer.cs 458B

12345678910111213
  1. using UnityEngine.Rendering.Universal;
  2. namespace UnityEditor.Rendering.Universal
  3. {
  4. [URPHelpURL("features/rp-converter")]
  5. internal sealed class BuiltInToURPConverterContainer : RenderPipelineConverterContainer
  6. {
  7. public override string name => "Built-in to URP";
  8. public override string info => "This tool converts project elements from the Built-in Render Pipeline to URP.";
  9. public override int priority => -9000;
  10. }
  11. }