Refactor PostProcessEffect to support C++ scripting

This commit is contained in:
Wojtek Figat
2022-11-02 20:29:59 +01:00
parent 86b6b20200
commit 6a61b692aa
19 changed files with 253 additions and 483 deletions

View File

@@ -33,7 +33,10 @@ namespace FlaxEditor.Gizmo
public IEditorPrimitivesOwner Viewport;
/// <inheritdoc />
public override int Order => -100;
public EditorPrimitives()
{
Order = -100;
}
/// <inheritdoc />
public override void Render(GPUContext context, ref RenderContext renderContext, GPUTexture input, GPUTexture output)