您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
Peter Bay Bastian a395e251 Fix for lightweight pipeline asset creation and bump package version 7 年前
ImageTemplates Merge pull request #665 from Unity-Technologies/HDRP-GraphicTests 7 年前
SampleScenes HDRenderPipeline: Revert change of CubemapColorMap test scene 7 年前
ScriptableRenderPipeline Fix for lightweight pipeline asset creation and bump package version 7 年前
TestbedPipelines Merge branch 'master' into LightweightPipeline 7 年前
Tests Merge pull request #676 from Unity-Technologies/Clean-SSS-code 7 年前
.collabignore HDRenderLoop: Last commit miss a shader file, so disable code temporary 8 年前
.editorconfig add formatting helper to repository 8 年前
.gitignore Clean up .gitignore 8 年前
.gitmodules Add PostProcessing submodule to new path 7 年前
.npmignore strip hd pipe for now when in package. 7 年前
ImageTemplates.meta Change root of repository to Assets/ 7 年前
LICENSE Update license 7 年前
LICENSE.meta Change root of repository to Assets/ 7 年前
PostProcessing.meta Change root of repository to Assets/ 7 年前
README.md Small update of READMe file 7 年前
README.md.meta Change root of repository to Assets/ 7 年前
SRPMARKER Update graphics test framework to work with new folder structure 7 年前
SRPMARKER.meta Update graphics test framework to work with new folder structure 7 年前
SampleScenes.meta TestScenes -> SampleScenes 7 年前
ScriptableRenderPipeline.meta New SceneSettingsManager based on a stack. Also commited updated .meta since last folder rename. 7 年前
TestbedPipelines.meta Move non-shipping pipelines to TestbedPipelines/ 7 年前
Tests.meta Move tests into common folder 7 年前
package.json update package def. 7 年前
package.json.meta Add files for UPM 7 年前
subpackage.py [subpackage] Add option to save .npmrc file for publishing other packages at the same time 7 年前
subpackage.py.meta Python script to manage sub-packages 7 年前

README.md

Unity Scriptable Render Pipeline testbed

NOTE: this is a testbed for a Unity feature that has not shipped yet! The latest commits in this project does not work with any public Unity version, and things in it might and will be broken.

"Scriptable Render Pipelines" is a potential future Unity feature, think "Command Buffers, take two". We plan to ship the feature, and a new modern built-in rendering pipeline with it. For now you can look around if you're really curious, but like said above, this is not useful for any public Unity version yet.

There's a more detailed overview document here: ScriptableRenderPipeline google doc

Did we mention it's a very WIP, no promises, may or might not ship feature, anything and everything in it can change? It totally is.

How to use the latest version

The repository no longer consists of a complete Unity project, but rather assumes to be put inside a sub-folder of the Assets\ folder of an existing Unity project. Make sure that your project uses linear color space (Edit > Project Settings > Player).

Perform the following instructions to get a working copy of SRP:

> cd <Path to your Unity project>/Assets
> git clone https://github.com/Unity-Technologies/ScriptableRenderPipeline
> cd ScriptableRenderPipeline
> git submodule update --init --recursive --remote

For Unity above 2017.1 beta users

SRP depends on PostProcessing submodule. Perform the following instructions to get a working copy of SRP:

> git clone https://github.com/Unity-Technologies/ScriptableRenderPipeline
> cd ScriptableRenderPipeline
> git checkout unity-2017.1b5 (or the latest tag)
> git submodule update --init --recursive --remote

For HDRenderPipeline:

  1. Download Unity version compatible with Github release (https://github.com/Unity-Technologies/ScriptableRenderPipeline/releases)
  2. Launch
  3. Create a new Unity project
  4. Set Color Space to Linear in Player settings, Set Antialiasing to disable in Quality settings for all configuration (Fantastic and High), Set Anisotropic Textures to "Per Textures"
  5. Close Unity
  6. Execute the following commands (or use GitHub interface (ask us)):
> cd <Path to your Unity project>/Assets
> git clone https://github.com/Unity-Technologies/ScriptableRenderPipeline
> cd ScriptableRenderPipeline
> git submodule update --init --recursive --remote   (This is to get the PostProcessing folder)
  1. Re-open the project
  2. In Graphic Settings, for render pipeline, setup the HDRenderPipelineAsset

Advice: It is recommended to make a copy of HDRenderPipelineAsset outside of the ScriptableRenderPipeline, so settings are not lost when merging. And setup this new created HDRenderPipelineAsset in GraphicSettings

For Unity 5.6 beta users

  • Unity 5.6 beta 5-7 should use an older revision of this project, tagged unity-5.6.0b5 (commit 2209522d on 2016 Dec 14). "BasicRenderLoopScene" scene is the basic example, need to pick basic render pipeline in Graphics Settings to use it. All the other scenes and render pipelines may or might not work. Use of Windows/DX11 is preferred.
  • Unity 5.6 beta 1-4 should use an older revision of this project, tagged unity-5.6.0b1 (commit acc230b on 2016 Nov 23). "BasicRenderLoopScene" scene is the basic example, with the scriptable render pipeline defaulting to off; enable it by enabling the component on the camera. All the other scenes may or might not work. Use of Windows/DX11 is preferred.