25 lines
493 B
C#
25 lines
493 B
C#
|
|
using XCEngine;
|
||
|
|
|
||
|
|
namespace XCEngine.Rendering
|
||
|
|
{
|
||
|
|
public abstract class ScriptableRenderPipeline : Object
|
||
|
|
{
|
||
|
|
protected ScriptableRenderPipeline()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected internal virtual bool SupportsStageRenderGraph(
|
||
|
|
CameraFrameStage stage)
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected internal virtual bool RecordStageRenderGraph(
|
||
|
|
ScriptableRenderContext context)
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|