码迷,mamicode.com
首页 > 编程语言 > 详细

Unity3D修改LWPR,HDPR的几项小问题和解决

时间:2018-09-04 23:32:21      阅读:1874      评论:0      收藏:0      [点我收藏+]

标签:color   tar   丢失   git   oca   目录   统一   https   bubuko   

最近在看Book of the Dead的demo,其中对HDPR进行修改以构建自己的SPR,于是自己尝试了下。。

 

一般直接去Github下载对应unity版本的SPR工程:

https://github.com/Unity-Technologies/ScriptableRenderPipeline

 

将com.unity.render-pipelines.core和你需要的管线放到统一目录中,它们对PostProcessing有依赖,也需要去github下载一份对应的版本。

下载好后在对应管线的Editor目录下有一个ShaderGraph的文件夹,如果用不到ShaderGraph可以直接删去(旧版本的BookOfDead demo也是删去的)。

注意Assembly Definition的链接可能有丢失,重新绑定一下即可。

目录如下:

技术分享图片

 

下面是重点,shader的链接此时会报错

技术分享图片

 

 

本以为2018版本的项目配置里可以配置shader的相对根位置,结果发现是在脚本里。。。。

这个也是Book of the dead demo里的,所以想要了解管线推荐多看下那个demo。

static class ShaderPathIncludeConfig
{
    [ShaderIncludePath]
    public static string[] ShaderPaths()
    {
        return new string[]
        {
            "Assets/LocalPipe/com.unity.render-pipelines.core",
            "Assets/LocalPipe/com.unity.render-pipelines.lightweight",
        };
    }
}

写一个Editor类,函数挂上ShaderIncludePath特性即可。

 

 

这样就可以使用并进行修改了,关掉skybox的绘制测试下,ok:

技术分享图片

Unity3D修改LWPR,HDPR的几项小问题和解决

标签:color   tar   丢失   git   oca   目录   统一   https   bubuko   

原文地址:https://www.cnblogs.com/hont/p/9589022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!