rj-action-library/Runtime/Rendering/Compositor/RDGraphCompositorEffect.cs

27 lines
436 B
C#
Raw Normal View History

2025-04-26 20:04:11 +00:00
using Godot;
using System.Collections.Generic;
namespace Rokojori
{
[Tool]
[GlobalClass]
2025-08-31 06:05:39 +00:00
public abstract partial class RDGraphCompositorEffect:RokojoriCompositorEffect
2025-04-26 20:04:11 +00:00
{
protected RDGraph _graph;
public RDGraph graph => _graph;
protected override void OnInitialize()
{
_graph = new RDGraph( context );
}
protected override void RenderView()
{
_graph.ProcessForView();
}
}
}