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

33 lines
595 B
C#
Raw Permalink 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;
2025-02-19 12:12:12 +00:00
[Export]
public Texture2D opacityMask;
[Export]
public bool visible = true;
2025-02-14 07:44:20 +00:00
2025-02-19 12:12:12 +00:00
public virtual async Task Process( TextureCombinerProcessingRect processingRect )
2025-02-14 07:44:20 +00:00
{
return;
}
}
}