您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

25 行
874 B

using System.IO;
using System.Linq;
using UnityEngine;
namespace UnityEditor.Experimental.Rendering.LightweightPipeline
{
static class LightweightIncludePaths
{
[ShaderIncludePath]
public static string[] GetPaths()
{
var srpMarker = Directory.GetFiles(Application.dataPath, "SRPMARKER", SearchOption.AllDirectories).FirstOrDefault();
var paths = new string[srpMarker == null ? 1 : 2];
var index = 0;
if (srpMarker != null)
{
var rootPath = Directory.GetParent(srpMarker).ToString();
paths[index] = Path.Combine(rootPath, "ScriptableRenderPipeline/LightweightPipeline");
index++;
}
paths[index] = Path.GetFullPath("Packages/com.unity.render-pipelines.lightweight");
return paths;
}
}
}