您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12 行
450 B
12 行
450 B
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
// This struct allow to add specialized path in HDRenderPipeline (can be use to render mini map or planar reflection etc...)
|
|
public enum RenderingPathHDRP { Default, Unlit };
|
|
|
|
[DisallowMultipleComponent, ExecuteInEditMode]
|
|
[RequireComponent(typeof(Camera))]
|
|
public class HDAdditionalCameraData : MonoBehaviour
|
|
{
|
|
public RenderingPathHDRP renderingPath;
|
|
}
|
|
}
|