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 ScenePhase
{
Opaque = 0,
Skybox = 1,
Transparent = 3,
EditorExtension = 4,
PostProcess = 5,
FinalOutput = 6
}
}