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

27 lines
427 B
C#
Raw Normal View History

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