您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
162 行
5.7 KiB
162 行
5.7 KiB
using UnityEngine.Serialization;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
// The HDRenderPipeline assumes linear lighting. Doesn't work with gamma.
|
|
public class HDRenderPipelineAsset : RenderPipelineAsset, ISerializationCallbackReceiver
|
|
{
|
|
HDRenderPipelineAsset()
|
|
{
|
|
}
|
|
|
|
protected override IRenderPipeline InternalCreatePipeline()
|
|
{
|
|
return new HDRenderPipeline(this);
|
|
}
|
|
|
|
[SerializeField]
|
|
RenderPipelineResources m_RenderPipelineResources;
|
|
public RenderPipelineResources renderPipelineResources
|
|
{
|
|
get { return m_RenderPipelineResources; }
|
|
set { m_RenderPipelineResources = value; }
|
|
}
|
|
|
|
// To be able to turn on/off FrameSettings properties at runtime for debugging purpose without affecting the original one
|
|
// we create a runtime copy (m_ActiveFrameSettings that is used, and any parametrization is done on serialized frameSettings)
|
|
[SerializeField]
|
|
[FormerlySerializedAs("serializedFrameSettings")]
|
|
FrameSettings m_FrameSettings = new FrameSettings(); // This are the defaultFrameSettings for all the camera and apply to sceneView, public to be visible in the inspector
|
|
// Not serialized, not visible, the settings effectively used
|
|
FrameSettings m_FrameSettingsRuntime = new FrameSettings();
|
|
|
|
bool m_frameSettingsIsDirty = true;
|
|
public bool frameSettingsIsDirty
|
|
{
|
|
get { return m_frameSettingsIsDirty; }
|
|
}
|
|
|
|
public FrameSettings GetFrameSettings()
|
|
{
|
|
return m_FrameSettingsRuntime;
|
|
}
|
|
|
|
// See comment in FrameSettings.UpdateDirtyFrameSettings()
|
|
// for detail about this function
|
|
public void UpdateDirtyFrameSettings()
|
|
{
|
|
if (m_frameSettingsIsDirty)
|
|
{
|
|
m_FrameSettings.CopyTo(m_FrameSettingsRuntime);
|
|
|
|
m_frameSettingsIsDirty = false;
|
|
|
|
// In Editor we can have plenty of camera that are not render at the same time as SceneView.
|
|
// It is really tricky to keep in sync with them. To have a coherent state. When a change is done
|
|
// on HDRenderPipelineAsset, we tag all camera as dirty so we are sure that they will get the
|
|
// correct default FrameSettings when the camera will be in the HDRenderPipeline.Render() call
|
|
// otherwise, as SceneView and Game camera are not in the same call Render(), Game camera that use default
|
|
// will not be update correctly.
|
|
#if UNITY_EDITOR
|
|
Camera[] cameras = Camera.allCameras;
|
|
foreach (Camera camera in cameras)
|
|
{
|
|
var additionalCameraData = camera.GetComponent<HDAdditionalCameraData>();
|
|
if (additionalCameraData)
|
|
{
|
|
// Call OnAfterDeserialize that set dirty on FrameSettings
|
|
additionalCameraData.OnAfterDeserialize();
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
public ReflectionSystemParameters reflectionSystemParameters
|
|
{
|
|
get
|
|
{
|
|
return new ReflectionSystemParameters
|
|
{
|
|
maxPlanarReflectionProbes = renderPipelineSettings.lightLoopSettings.maxPlanarReflectionProbes,
|
|
planarReflectionProbeSize = renderPipelineSettings.lightLoopSettings.planarReflectionTextureSize
|
|
};
|
|
}
|
|
}
|
|
|
|
// Store the various RenderPipelineSettings for each platform (for now only one)
|
|
public RenderPipelineSettings renderPipelineSettings = new RenderPipelineSettings();
|
|
|
|
// Return the current use RenderPipelineSettings (i.e for the current platform)
|
|
public RenderPipelineSettings GetRenderPipelineSettings()
|
|
{
|
|
return renderPipelineSettings;
|
|
}
|
|
|
|
[SerializeField]
|
|
public DiffusionProfileSettings diffusionProfileSettings;
|
|
|
|
public override Shader GetDefaultShader()
|
|
{
|
|
return m_RenderPipelineResources.defaultShader;
|
|
}
|
|
|
|
public override Material GetDefaultMaterial()
|
|
{
|
|
return m_RenderPipelineResources.defaultDiffuseMaterial;
|
|
}
|
|
|
|
// Note: This function is HD specific
|
|
public Material GetDefaultDecalMaterial()
|
|
{
|
|
return m_RenderPipelineResources.defaultDecalMaterial;
|
|
}
|
|
|
|
public override Material GetDefaultParticleMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Material GetDefaultLineMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Material GetDefaultTerrainMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Material GetDefaultUIMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Material GetDefaultUIOverdrawMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Material GetDefaultUIETC1SupportedMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Material GetDefault2DMaterial()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
void ISerializationCallbackReceiver.OnBeforeSerialize()
|
|
{
|
|
}
|
|
|
|
void ISerializationCallbackReceiver.OnAfterDeserialize()
|
|
{
|
|
// This is call on load or when this settings are change.
|
|
// When FrameSettings are manipulated we reset them to reflect the change, discarding all the Debug Windows change.
|
|
// Tag as dirty so frameSettings are correctly initialize at next HDRenderPipeline.Render() call
|
|
m_frameSettingsIsDirty = true;
|
|
}
|
|
}
|
|
}
|