rj-action-library/Runtime/Rendering/CompositorEffects/TextureDilation/TextureDilationCompositerEf...

38 lines
502 B
C#
Raw Normal View History

2025-04-23 12:00:43 +00:00
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System;
using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass]
2025-04-24 13:39:00 +00:00
public partial class TextureDilationCompositerEffect:_XX_CompositorEffectGraph
2025-04-23 12:00:43 +00:00
{
2025-04-24 13:39:00 +00:00
public TextureDilationCompositerEffect()
{
CreateGraph();
}
2025-04-23 12:00:43 +00:00
2025-04-24 13:39:00 +00:00
RDTexture color;
RDTexture bufferA;
RDTexture bufferB;
2025-04-23 12:00:43 +00:00
2025-04-24 13:39:00 +00:00
CEG_Copy copy;
2025-04-23 12:00:43 +00:00
2025-04-24 13:39:00 +00:00
void CreateGraph()
2025-04-23 12:00:43 +00:00
{
2025-04-24 13:39:00 +00:00
2025-04-23 12:00:43 +00:00
}
2025-04-24 13:39:00 +00:00
void AssignData()
2025-04-23 12:00:43 +00:00
{
2025-04-24 13:39:00 +00:00
}
2025-04-23 12:00:43 +00:00
}
}