Files
2026-07-13 13:13:17 +08:00

19 lines
610 B
C#

namespace Lib.image.use;
[Guid("0989e44b-f543-4b9a-a08e-5058d0032259")]
internal sealed class RenderWithMotionBlur : Instance<RenderWithMotionBlur>
{
[Output(Guid = "351ecd6a-1b91-49c1-8497-16e115941e63")]
public readonly Slot<Texture2D> Output = new();
[Input(Guid = "a341c7d8-b324-4b5e-82e4-b9fae958e913")]
public readonly InputSlot<Texture2D> Texture = new();
[Input(Guid = "27f2bbbd-a1d6-4489-9bb4-f856872ff5de")]
public readonly InputSlot<int> Passes = new();
[Input(Guid = "5305a99b-c9ee-41d8-b3e8-918b17ed2107")]
public readonly InputSlot<float> Strength = new();
}