您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
951 B
30 行
951 B
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
/// <summary>
|
|
/// Holds settings for the reflection system.
|
|
/// </summary>
|
|
public struct ReflectionSystemParameters
|
|
{
|
|
public static ReflectionSystemParameters Default = new ReflectionSystemParameters
|
|
{
|
|
maxPlanarReflectionProbePerCamera = 128,
|
|
maxActivePlanarReflectionProbe = 512,
|
|
planarReflectionProbeSize = 128
|
|
};
|
|
|
|
/// <summary>
|
|
/// Maximum number of planar reflection that can be found in a cull result.
|
|
/// </summary>
|
|
public int maxPlanarReflectionProbePerCamera;
|
|
|
|
/// <summary>
|
|
/// Maximum number of active planar reflection in the world.
|
|
/// </summary>
|
|
public int maxActivePlanarReflectionProbe;
|
|
|
|
/// <summary>
|
|
/// Size of the planar probe textures.
|
|
/// </summary>
|
|
public int planarReflectionProbeSize;
|
|
}
|
|
}
|