Skip to content

Instantly share code, notes, and snippets.

@cjaube
Created May 29, 2020 02:38
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjaube/944b0d5221808c2a761d616f29deaf49 to your computer and use it in GitHub Desktop.
Save cjaube/944b0d5221808c2a761d616f29deaf49 to your computer and use it in GitHub Desktop.
Generate Unity #define directives for selected rendering pipelines.
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
using UnityEngine.Rendering;
[InitializeOnLoad]
public class RenderingPipelineDefines
{
enum PipelineType
{
Unsupported,
BuiltInPipeline,
UniversalPipeline,
HDPipeline
}
static RenderingPipelineDefines()
{
UpdateDefines();
}
/// <summary>
/// Update the unity pipeline defines for URP
/// </summary>
static void UpdateDefines()
{
var pipeline = GetPipeline();
if (pipeline == PipelineType.UniversalPipeline)
{
AddDefine("UNITY_PIPELINE_URP");
}
else
{
RemoveDefine("UNITY_PIPELINE_URP");
}
if (pipeline == PipelineType.HDPipeline)
{
AddDefine("UNITY_PIPELINE_HDRP");
}
else
{
RemoveDefine("UNITY_PIPELINE_HDRP");
}
}
/// <summary>
/// Returns the type of renderpipeline that is currently running
/// </summary>
/// <returns></returns>
static PipelineType GetPipeline()
{
#if UNITY_2019_1_OR_NEWER
if (GraphicsSettings.renderPipelineAsset != null)
{
// SRP
var srpType = GraphicsSettings.renderPipelineAsset.GetType().ToString();
if (srpType.Contains("HDRenderPipelineAsset"))
{
return PipelineType.HDPipeline;
}
else if (srpType.Contains("UniversalRenderPipelineAsset") || srpType.Contains("LightweightRenderPipelineAsset"))
{
return PipelineType.UniversalPipeline;
}
else return PipelineType.Unsupported;
}
#elif UNITY_2017_1_OR_NEWER
if (GraphicsSettings.renderPipelineAsset != null) {
// SRP not supported before 2019
return PipelineType.Unsupported;
}
#endif
// no SRP
return PipelineType.BuiltInPipeline;
}
/// <summary>
/// Add a custom define
/// </summary>
/// <param name="define"></param>
/// <param name="buildTargetGroup"></param>
static void AddDefine(string define)
{
var definesList = GetDefines();
if (!definesList.Contains(define))
{
definesList.Add(define);
SetDefines(definesList);
}
}
/// <summary>
/// Remove a custom define
/// </summary>
/// <param name="_define"></param>
/// <param name="_buildTargetGroup"></param>
public static void RemoveDefine(string define)
{
var definesList = GetDefines();
if (definesList.Contains(define))
{
definesList.Remove(define);
SetDefines(definesList);
}
}
public static List<string> GetDefines()
{
var target = EditorUserBuildSettings.activeBuildTarget;
var buildTargetGroup = BuildPipeline.GetBuildTargetGroup(target);
var defines = PlayerSettings.GetScriptingDefineSymbolsForGroup(buildTargetGroup);
return defines.Split(';').ToList();
}
public static void SetDefines(List<string> definesList)
{
var target = EditorUserBuildSettings.activeBuildTarget;
var buildTargetGroup = BuildPipeline.GetBuildTargetGroup(target);
var defines = string.Join(";", definesList.ToArray());
PlayerSettings.SetScriptingDefineSymbolsForGroup(buildTargetGroup, defines);
}
}
@Radivarig
Copy link

Radivarig commented Jan 1, 2023

using UnityEditor is not available in builds so additionally wrap everything in #if UNITY_EDITOR ... #elif.

EDIT: eh.. this HAS to go under Assets/Editor to get compiled before the rest of the code, and the Editor folder is stripped from build.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment