refactor(srp): move directional shadow execution policy into managed urp

This commit is contained in:
2026-04-21 02:49:15 +08:00
parent e2b2df4c8f
commit 0e1b96d641
11 changed files with 403 additions and 0 deletions

View File

@@ -68,6 +68,12 @@ namespace XCEngine.Rendering.Universal
stage);
}
internal string
GetDirectionalShadowExecutionPolicyAssetKeyInstance()
{
return GetDirectionalShadowExecutionPolicyAssetKey();
}
internal int GetRuntimeStateVersionInstance()
{
return m_runtimeStateVersion;
@@ -166,6 +172,12 @@ namespace XCEngine.Rendering.Universal
return string.Empty;
}
protected virtual string
GetDirectionalShadowExecutionPolicyAssetKey()
{
return string.Empty;
}
protected virtual ScriptableRendererFeature[] CreateRendererFeatures()
{
return Array.Empty<ScriptableRendererFeature>();