rj-action-library/Runtime/Procedural/Textures/TextureCombiner/TextureCombinerLayer.cs

27 lines
493 B
C#
Raw Normal View History

2025-02-14 07:44:20 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class TextureCombinerLayer:Resource
{
[Export]
public TextureCombinerBlendMode blendMode;
[Export( PropertyHint.Range, "0,1")]
public float opacity = 1;
public async Task Process( TextureCombinerProcessingRect processingRect )
{
return;
}
}
}