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

19 lines
643 B
C#

namespace Examples.user.still.there.research;
[Guid("2d388f2b-3d07-4cbd-a86a-63c5cb83ed26")]
internal sealed class ThereLetterBoxOverlay : Instance<ThereLetterBoxOverlay>
{
[Output(Guid = "532edc49-d0db-47e8-8e40-9acb7a32038e")]
public readonly Slot<Command> Output = new();
[Input(Guid = "6af229bb-f515-400a-9de8-a6f64c618e7c")]
public readonly InputSlot<float> Float = new();
[Input(Guid = "1885bd1c-d612-48e0-97db-5614e49d7c3e")]
public readonly InputSlot<System.Numerics.Vector4> Color = new();
[Input(Guid = "df29f51e-74fc-4c15-8253-c6cf458d7927")]
public readonly InputSlot<int> Direction = new();
}