feat(rendering): expose builtin forward scene steps to srp context

This commit is contained in:
2026-04-17 22:26:51 +08:00
parent 69319b4a7b
commit 6f6c8877fa
14 changed files with 551 additions and 170 deletions

View File

@@ -0,0 +1,12 @@
namespace XCEngine
{
public enum SceneRenderInjectionPoint
{
BeforeOpaque = 0,
AfterOpaque = 1,
BeforeSkybox = 2,
AfterSkybox = 3,
BeforeTransparent = 4,
AfterTransparent = 5
}
}